:root {
  --navy: #08002a;
  --brand-midnight: #0d0038;
  --blue: #23a8ff;
  --aqua: #32dfd0;
  --lime: #9bf56a;
  --white: #ffffff;
  --ink: #102033;
  --muted: #51657a;
  --line: #dce8f0;
  --soft: #f5faff;
  --mint: #effff8;
  --shadow: 0 22px 60px rgba(7, 18, 41, .14);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Segoe UI Variable", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(40, 169, 255, .09) 0%, rgba(40, 169, 255, .09) 18%, transparent 18%, transparent 42%, rgba(69, 227, 209, .08) 42%, rgba(69, 227, 209, .08) 57%, transparent 57%),
    repeating-linear-gradient(90deg, rgba(7,18,41,.025) 0px, rgba(7,18,41,.025) 1px, transparent 1px, transparent 76px),
    linear-gradient(180deg, #ffffff, #f7fcff 46%, #ffffff);
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--aqua), var(--lime));
  box-shadow: 0 0 18px rgba(69, 227, 209, .55);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--lime);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  width: min(var(--max), calc(100% - 32px));
  margin: 12px auto 0;
  border: 1px solid rgba(220, 232, 240, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 36px rgba(7, 18, 41, 0.08);
}

.nav {
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 0 20px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 10px 22px rgba(40, 169, 255, .24);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  display: block;
}

.brand span span {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 99px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(7, 18, 41, 0.04);
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: rgba(35, 168, 255, 0.08);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 18, 41, .18);
}
.btn-primary:active { background: #0a1736; }
.btn-primary:hover { background: #0b1b3b; }
.btn-accent {
  color: var(--navy);
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  box-shadow: 0 14px 30px rgba(69, 227, 209, .22);
}
.btn-accent:active { filter: brightness(.96); }
.btn-ghost {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  transition: all 0.22s ease;
}
.btn-ghost:hover {
  background: #f8fbff;
  border-color: rgba(40, 169, 255, .25);
  transform: translateY(-1px);
}
.btn-ghost:active {
  background: #eef6ff;
  border-color: rgba(40, 169, 255, .35);
}
.icon { width: 18px; height: 18px; flex: 0 0 auto; }

.section {
  padding: 88px 0;
}
.section.alt { background: linear-gradient(180deg, #f7fcff, #ffffff); }
.section.mint { background: var(--mint); }
.stats-section { background: #f9fcff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  margin-bottom: 36px;
}
.stat-card { padding: 20px; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.stat-number.blue { color: var(--blue); }
.stat-number.aqua { color: var(--aqua); }
.stat-number.lime { color: var(--lime); }
.stat-label { color: var(--muted); margin: 0; }
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #0c628b;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
  overflow-wrap: normal;
  word-break: normal;
}
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0;
  font-family: "Arial Nova", "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 920;
}
h1 {
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  max-width: 980px;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  max-width: 820px;
  line-height: .96;
}
h3 { font-size: 1.25rem; }
.lead {
  color: #34465c;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 720px;
  margin: 20px 0 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head p {
  max-width: 500px;
  color: var(--muted);
  margin: 0;
}

.hero {
  --hero-word: "OSUM";
  --hero-word-size: clamp(7rem, 18vw, 18rem);
  --hero-word-right: max(24px, calc((100vw - var(--max)) / 2));
  --hero-word-top: 17%;
  --hero-word-opacity: .032;
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 56px 0 40px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255,255,255,.96), rgba(237,250,255,.94) 52%, rgba(248,255,242,.92)),
    repeating-linear-gradient(90deg, rgba(7,18,41,.04) 0px, rgba(7,18,41,.04) 1px, transparent 1px, transparent 80px);
}
.hero::before {
  content: var(--hero-word);
  position: absolute;
  right: var(--hero-word-right);
  top: var(--hero-word-top);
  color: rgba(7, 18, 41, var(--hero-word-opacity));
  font-family: "Arial Black", "Segoe UI Variable Display", sans-serif;
  font-size: var(--hero-word-size);
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  transform: translateY(-10%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  align-items: center;
  gap: 56px;
}
.hero-copy { min-width: 0; }
.hero-copy h1 {
  max-width: 780px;
}
.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--blue), var(--aqua) 48%, #68d63d);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 680px;
}
.proof-item {
  min-height: 94px;
  border: 1px solid rgba(40, 169, 255, .22);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(14px);
}
.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}
.proof-item span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  margin-top: 5px;
}
.hero-media {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-visual {
  min-height: 560px;
  transform-style: preserve-3d;
}
.paint-orbit {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 40%, rgba(69, 227, 209, .16), transparent 30%),
    linear-gradient(145deg, #071229 0%, #0b2550 58%, #082239 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.paint-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  pointer-events: none;
}
.paint-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 74%);
  opacity: .44;
  pointer-events: none;
}
.paint-orbit canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.orbit-panel {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
  animation: floatPanel 7s ease-in-out infinite;
}
.orbit-panel strong {
  color: var(--lime);
  line-height: 1.1;
}
.orbit-panel span {
  color: #d4e8f4;
  font-size: .82rem;
  font-weight: 750;
}
.orbit-panel-one { top: 38px; left: 34px; }
.orbit-panel-two { right: 28px; top: 42%; animation-delay: -2s; }
.orbit-panel-three { left: 42px; bottom: 42px; animation-delay: -4s; }
@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 34px;
  z-index: 5;
  max-width: 278px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-badge strong {
  display: block;
  color: var(--lime);
  font-size: 1.4rem;
}
.hero-badge span { color: #cfe2ef; font-size: .9rem; }

.home-hero {
  --hero-word: "OSUM";
  --hero-word-size: clamp(8rem, 19vw, 19rem);
  --hero-word-top: 14%;
  min-height: calc(100svh - 88px);
  background:
    linear-gradient(105deg, rgba(7,18,41,.96) 0%, rgba(7,18,41,.96) 43%, rgba(8,35,62,.9) 43%, rgba(8,35,62,.9) 58%, rgba(248,255,252,.92) 58%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.home-hero::before {
  color: rgba(255,255,255,.045);
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(255,255,255,0), #061024);
}

.home-hero .eyebrow,
.home-hero h1 {
  color: var(--white);
}

.home-hero .lead {
  color: #d8eaf4;
}

.home-hero .hero-proof {
  max-width: 720px;
}

.home-hero .proof-item {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.home-hero .proof-item strong {
  color: var(--lime);
}

.home-hero .proof-item span {
  color: #d5e7f2;
}

.home-hero + .section {
  display: none;
}

.story-hero-panel {
  min-height: clamp(560px, 68vh, 660px);
  isolation: isolate;
}

.story-frame {
  position: relative;
  width: min(75%, 500px);
  min-height: clamp(500px, 60vh, 580px);
  margin-left: auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(0,0,0,.35);
}

.story-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}

.story-frame img,
.story-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-frame img {
  position: absolute;
  inset: 0;
  filter: saturate(1.08) contrast(1.03);
}

.story-frame-overlay {
  position: absolute;
  left: auto;
  right: 28px;
  bottom: 30px;
  z-index: 3;
  width: min(66%, 315px);
  padding: 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7,18,41,.88), rgba(7,18,41,.42));
  border-left: 4px solid var(--lime);
  backdrop-filter: blur(18px);
}

.story-frame-overlay span,
.story-step span {
  display: inline-block;
  color: var(--aqua);
  font-weight: 950;
  letter-spacing: .1em;
}

.story-frame-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: .95;
}

.story-frame-overlay p {
  margin: 10px 0 0;
  color: #d8eaf4;
}

.story-stack {
  position: absolute;
  z-index: 3;
  width: min(38%, 230px);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 22px 64px rgba(0,0,0,.26);
}

.story-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7,18,41,.82));
}

.story-stack span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 850;
  line-height: 1.15;
}

.story-stack-top {
  left: 18px;
  top: clamp(42px, 8vh, 78px);
  aspect-ratio: 4 / 5;
}

.story-stack-bottom {
  right: 0;
  bottom: 16px;
  width: min(34%, 215px);
  aspect-ratio: 1 / 1.14;
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,18,41,.96), rgba(9,37,67,.92)),
    url("https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .42;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 118px;
}

.story-intro .eyebrow,
.story-intro h2 {
  color: var(--white);
}

.story-intro p:not(.eyebrow) {
  max-width: 520px;
  color: #c9ddec;
  font-size: 1.1rem;
}

.story-steps {
  display: grid;
  gap: 16px;
}

.story-step {
  position: relative;
  padding: 26px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.story-step:nth-child(even) {
  transform: translateX(34px);
}

.story-step h3 {
  color: var(--white);
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.story-step p {
  color: #d5e7f2;
  margin: 10px 0 0;
}

.services-hero {
  --hero-word: "SYSTEMS";
  --hero-word-size: clamp(6rem, 13vw, 13rem);
  --hero-word-top: 18%;
  --hero-word-opacity: .045;
}

.projects-hero {
  --hero-word: "WORK";
  --hero-word-size: clamp(7rem, 16vw, 16rem);
  --hero-word-top: 18%;
  --hero-word-opacity: .04;
}

.about-hero {
  --hero-word: "CRAFT";
  --hero-word-size: clamp(7rem, 15vw, 15rem);
  --hero-word-top: 18%;
  --hero-word-opacity: .04;
}

.contact-hero {
  --hero-word: "QUOTE";
  --hero-word-size: clamp(7rem, 15vw, 15rem);
  --hero-word-top: 18%;
  --hero-word-opacity: .04;
}

.surface-lab {
  position: relative;
  overflow: hidden;
  background: #061024;
  color: var(--white);
}
.surface-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(40,169,255,.22), transparent 36%, rgba(158,247,107,.13));
  background-size: 72px 72px, 72px 72px, auto;
  opacity: .48;
}
.lab-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.surface-lab h2,
.surface-lab .eyebrow {
  color: var(--white);
}
.surface-lab .lab-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #c8dce9;
  font-size: 1.08rem;
}
.lab-media {
  min-height: 620px;
  position: relative;
}
.lab-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.lab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.lab-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7,18,41,.72);
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.lab-photo-large {
  width: 58%;
  height: 560px;
  left: 0;
  top: 34px;
}
.lab-photo-small {
  width: 46%;
  height: 430px;
  right: 0;
  top: 124px;
}
.kinetic-strip {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  width: max-content;
  margin-top: 46px;
  color: rgba(255,255,255,.1);
  font-family: "Arial Black", "Segoe UI Variable Display", sans-serif;
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: .8;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.kinetic-strip span:nth-child(even) {
  -webkit-text-stroke: 1px rgba(158,247,107,.42);
  color: transparent;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-38%); }
}

.page-hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(110deg, rgba(7,18,41,.94), rgba(7,18,41,.78)),
    url("assest/hero-residence.svg") center/cover no-repeat;
  color: var(--white);
}
.page-hero h1,
.page-hero .eyebrow { color: var(--white); }
.page-hero .lead { color: #d9e8f0; }

.service-grid,
.project-grid,
.review-grid,
.values-grid,
.process-grid,
.team-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .category-grid,
  .subcategory-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 18, 41, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.brand-system {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(50,223,208,.18), transparent 28%),
    linear-gradient(135deg, #08002a 0%, #071229 54%, #082f45 100%);
}

.brand-system::before {
  content: "";
  position: absolute;
  inset: -18% auto -18% -8%;
  width: 42%;
  background: linear-gradient(135deg, rgba(35,168,255,.24), rgba(155,245,106,.14));
  clip-path: polygon(0 0, 58% 0, 100% 100%, 28% 100%);
  pointer-events: none;
}

.brand-system .container {
  position: relative;
  z-index: 1;
}

.brand-system h2,
.brand-system h3,
.brand-system .eyebrow {
  color: var(--white);
}

.brand-system p {
  color: #d7e8f2;
}

.surface-index,
.local-grid,
.faq-grid,
.keyword-cloud {
  display: grid;
  gap: 16px;
}

.surface-index {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.surface-index a,
.local-chip,
.keyword-cloud span {
  border: 1px solid rgba(220,232,240,.82);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 40px rgba(7,18,41,.08);
}

.surface-index a {
  display: grid;
  align-content: space-between;
  min-height: 132px;
  padding: 18px;
  color: var(--navy);
}

.surface-index span {
  display: block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.surface-index strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}

.surface-index small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
}

.local-grid {
  grid-template-columns: .86fr 1.14fr;
  align-items: start;
}

.local-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.local-chip {
  padding: 14px;
  color: var(--navy);
  font-weight: 850;
}

.keyword-cloud {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.keyword-cloud span {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
}

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

.answer-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7,18,41,.08);
}

.answer-card h3 {
  font-size: 1.15rem;
}

.answer-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.seo-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .92rem;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 169, 255, .34);
  box-shadow: 0 20px 48px rgba(7, 18, 41, .12);
}
.service-card {
  min-height: 254px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.service-card .service-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(40, 169, 255, 0.24);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  opacity: .9;
  z-index: 2;
}
.service-card:hover .service-btn {
  transform: translateX(4px);
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(155, 245, 106, 0.35);
  opacity: 1;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(135deg, #e2f8ff, #efffe5);
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.service-card p,
.value-card p,
.process-card p,
.review-card p {
  color: var(--muted);
  margin: 12px 0 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-right: 38px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #15516a;
  background: #edfaff;
  font-size: .8rem;
  font-weight: 800;
}

/* CATEGORY CARDS - MAIN SERVICE MENU */
.category-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 2.4rem;
  font-weight: 900;
}

.category-card h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--navy);
}

.category-link {
  color: var(--navy);
  transition: color 0.2s ease;
}

.category-link:hover {
  color: var(--blue);
}

.category-card p {
  color: var(--muted);
  margin: 0;
  flex-grow: 1;
  line-height: 1.5;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: auto;
}

.pricing-info {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
}
.pricing-info strong {
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
}

.before-after {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.before-after > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.split-grid.image-left {
  grid-template-columns: 0.9fr 1.1fr;
}
@media (min-width: 981px) {
  .split-grid .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.service-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: var(--brand-midnight);
}
.service-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-media-frame:hover img {
  transform: scale(1.04);
}
.service-media-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  pointer-events: none;
  transition: inset 0.3s ease, border-color 0.3s ease;
}
.service-media-frame:hover::before {
  inset: 8px;
  border-color: rgba(255, 255, 255, 0.45);
}
.ba-instruction {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}
.ba-slider {
  --pos: 52%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
  background: #d8d0c3;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-handle {
  position: absolute;
  inset: 0 auto 0 var(--pos);
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border: 4px solid var(--white);
  box-shadow: 0 10px 24px rgba(7, 18, 41, .22);
}
.ba-slider input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(7, 18, 41, .82);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }

.project-card {
  overflow: hidden;
  background: #061024;
}
.project-card:hover img { transform: scale(1.035); }
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease;
}
.project-body {
  padding: 18px;
  background: var(--white);
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #21708d;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}
.project-body p {
  color: var(--muted);
  margin: 10px 0 0;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}
.filter-btn[aria-pressed="true"] {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.reviews-band {
  background: var(--navy);
  color: var(--white);
}
.reviews-band h2 { color: var(--white); }
.reviews-band .section-head p { color: #c9dae7; }
.review-link {
  color: var(--blue);
  text-decoration: underline;
}
.reviews-band .review-link {
  color: var(--white);
}
.review-card {
  min-height: 244px;
  padding: 22px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}
.stars {
  color: var(--lime);
  font-size: 1.05rem;
  letter-spacing: 0;
}
.reviewer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #e9f7ff;
  font-weight: 850;
}
.reviewer span { color: #9fc0d5; font-size: .86rem; font-weight: 700; }

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, #ecfbff, #f4ffe8);
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-box p {
  max-width: 650px;
  color: var(--muted);
  margin: 14px 0 0;
}

.value-card,
.process-card {
  padding: 24px;
  min-height: 210px;
}
.process-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.team-card {
  text-align: center;
  padding: 28px 24px;
  min-height: 320px;
}
.team-avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}
.team-avatar.gradient-blue {
  background: linear-gradient(135deg, #28a9ff, #45e3d1);
}
.team-avatar.gradient-lime {
  background: linear-gradient(135deg, #9ef76b, #45e3d1);
}
.team-avatar.gradient-mix {
  background: linear-gradient(135deg, #28a9ff, #9ef76b);
}
.team-card h3 {
  color: var(--navy);
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.team-role {
  color: var(--blue);
  font-weight: 800;
  font-size: .95rem;
  margin: 0 0 12px;
}
.team-bio {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

.case-study {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.case-title {
  color: var(--navy);
  margin: 0 0 16px;
}
.case-highlight {
  color: var(--blue);
  font-weight: 800;
  margin-top: 8px;
}
.case-label {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.case-list {
  margin: 8px 0;
  padding-left: 20px;
  color: var(--muted);
}
.case-result {
  margin: 0;
  color: var(--muted);
}
.case-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #f0f8ff, #f0ffe8);
  border-bottom: 1px solid var(--line);
}
.case-header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.case-header strong {
  color: var(--navy);
  font-size: 1.1rem;
}
.case-header span {
  color: var(--muted);
  font-size: 0.9rem;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 28px;
  background: var(--white);
}
.case-details {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.detail-item {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(220, 232, 240, .5);
  line-height: 1.4;
}
.detail-item:last-child {
  border-bottom: none;
}
.detail-item strong {
  color: var(--navy);
  font-weight: 800;
  display: block;
  font-size: 0.9rem;
}
.case-description ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-details {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 18px;
  }
}
.faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
}
summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}
summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.4rem;
}
details[open] summary::after { content: "-"; }
details p {
  color: var(--muted);
  margin: 0 0 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.contact-panel {
  padding: 24px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-item .service-icon {
  margin-bottom: 0;
  flex: 0 0 auto;
}
a.contact-item:hover {
  background: #f8fbff;
  border-color: rgba(40, 169, 255, 0.15);
  color: var(--ink);
  transform: translateX(6px);
}
a.contact-item:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: var(--white);
  transform: scale(1.05);
}
a.contact-item:hover .service-icon svg {
  transform: rotate(5deg) scale(1.05);
}
.contact-item strong {
  display: block;
  color: var(--navy);
}
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-field {
  display: grid;
  gap: 7px;
}
.form-field label {
  color: var(--navy);
  font-weight: 800;
}
.form .full { grid-column: 1 / -1; }
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 12px 13px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(40, 169, 255, 0.22);
  outline: none;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #4d6075;
}
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"],
.form select[aria-invalid="true"] {
  border-color: #c64040;
  box-shadow: 0 0 0 3px rgba(198, 64, 64, 0.18);
}
.form-note {
  display: block;
  grid-column: 1 / -1;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  background: #f5faff;
  border-radius: var(--radius);
  color: var(--muted);
}
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
  background: #f0f7ff;
  color: var(--navy);
  border: 1px solid rgba(40, 169, 255, .18);
  font-size: .92rem;
}
.form-status.is-error {
  background: #fff1f1;
  border-color: rgba(198, 64, 64, .35);
  color: #7f1d1d;
}
.form-status.is-success {
  background: #f1fff5;
  border-color: rgba(54, 150, 84, .3);
  color: #14532d;
}
.form textarea {
  min-height: 132px;
  resize: vertical;
}
.map {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  background: #061024;
  color: #d5e7f1;
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 28px;
}
.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  object-fit: cover;
}
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}
.site-footer p,
.site-footer a {
  color: #d5e7f2;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: var(--blue);
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 20px;
  color: #c9dae7;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 18, 41, .24);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 20px 38px rgba(7, 18, 41, .32);
}

.call-float {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0066cc);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 18, 41, .24);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.call-float svg { width: 26px; height: 26px; }
.call-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 20px 38px rgba(7, 18, 41, .32);
}

body.js-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity .58s ease, transform .58s ease;
}
body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ===== MODERN SERVICES HERO ===== */
.services-hero {
  background: linear-gradient(135deg, #f5faff 0%, #f0e3ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}

.hero-services .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-services .hero-content p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.services-hero .hero-visual,
.about-hero .hero-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a9ff 0%, #45e3d1 100%);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

/* ===== MODERN SERVICE CARDS ===== */
.category-grid.modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a9ff, #45e3d1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  border-color: #28a9ff;
  box-shadow: 0 20px 50px rgba(40, 169, 255, 0.12);
  transform: translateY(-4px);
}

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

.card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.card-header.accent h3 {
  color: #28a9ff;
}

.category-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #dce8f0;
  min-width: 40px;
}

.category-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--navy);
  flex: 1;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #e0f7ff;
  color: #28a9ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.success {
  background: #effff8;
  color: #45e3d1;
}

.category-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
}

.service-features li::before {
  content: '→';
  color: #28a9ff;
  font-weight: 700;
  min-width: 14px;
}

.card-link {
  display: inline-block;
  color: #28a9ff;
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.card-link:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.section-head.text-center {
  text-align: center;
  margin-bottom: 20px;
}

.section-head.text-center h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-head.text-center p {
  color: var(--muted);
  font-size: 1rem;
}

/* ===== PROJECTS HERO ===== */
.projects-hero {
  background: linear-gradient(135deg, #f5faff 0%, #eef5ff 50%, #f0e3ff 100%);
}

.hero-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 500px;
  padding: 60px 0;
}

.hero-projects .hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  box-shadow: 0 12px 28px rgba(40, 169, 255, 0.1);
  border-color: #28a9ff;
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  color: #28a9ff;
  margin-bottom: 8px;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #f5faff 0%, #f9f0ff 100%);
}

.hero-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 500px;
  padding: 60px 0;
}

.hero-about .hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.accent-shapes {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape {
  position: absolute;
  border-radius: 12px;
  opacity: 0.12;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: #28a9ff;
  top: 0;
  right: 0;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #45e3d1;
  bottom: 20px;
  left: 20px;
  border-radius: 50%;
}

.shape-3 {
  width: 150px;
  height: 200px;
  background: #9ef76b;
  top: 50%;
  left: 0;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  background: linear-gradient(135deg, #f5faff 0%, #e8f5e9 50%, #eef5ff 100%);
}

.hero-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 450px;
  padding: 60px 0;
}

.hero-contact .hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.hero-highlight {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}

.highlight-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  font-size: .78rem;
  font-weight: 900;
  flex: 0 0 auto;
}
.highlight-mark svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.highlight-text strong {
  color: #28a9ff;
  font-weight: 600;
}

/* Page-specific hero personalities */
.home-hero {
  background:
    linear-gradient(105deg, rgba(7,18,41,.96) 0%, rgba(7,18,41,.96) 43%, rgba(8,35,62,.9) 43%, rgba(8,35,62,.9) 58%, rgba(248,255,252,.92) 58%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.home-hero .hero-copy {
  padding: 18px 0;
}

.services-hero {
  background:
    linear-gradient(135deg, rgba(245,250,255,.98) 0%, rgba(240,227,255,.94) 56%, rgba(235,255,248,.92) 100%),
    repeating-linear-gradient(120deg, rgba(40,169,255,.08) 0px, rgba(40,169,255,.08) 1px, transparent 1px, transparent 74px);
}

.services-hero .gradient-orb {
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,.72), transparent 18%),
    conic-gradient(from 130deg, var(--blue), var(--aqua), var(--lime), var(--blue));
  box-shadow: 0 32px 90px rgba(40,169,255,.22);
  opacity: .26;
}

.projects-hero {
  background:
    linear-gradient(135deg, rgba(245,250,255,.95), rgba(238,245,255,.92) 46%, rgba(255,248,238,.94)),
    linear-gradient(90deg, rgba(7,18,41,.04) 1px, transparent 1px);
  background-size: auto, 88px 100%;
}

.projects-hero .stat-item {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.72);
}

.about-hero {
  background:
    linear-gradient(135deg, rgba(245,250,255,.98), rgba(249,240,255,.92)),
    radial-gradient(circle at 78% 40%, rgba(158,247,107,.22), transparent 28%);
}

.about-hero .accent-shapes {
  filter: saturate(1.2);
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(245,250,255,.98), rgba(232,245,233,.92) 50%, rgba(238,245,255,.96)),
    repeating-linear-gradient(0deg, rgba(7,18,41,.04) 0px, rgba(7,18,41,.04) 1px, transparent 1px, transparent 70px);
}

.contact-hero .hero-highlight {
  box-shadow: 0 24px 70px rgba(7,18,41,.1);
}

@media (max-width: 980px) {
  .hero-services,
  .hero-projects,
  .hero-about,
  .hero-contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid.modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .gradient-orb {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 680px) {
  .hero-services,
  .hero-projects,
  .hero-about,
  .hero-contact {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-services .hero-content h1,
  .hero-projects .hero-content h1,
  .hero-about .hero-content h1,
  .hero-contact .hero-content h1 {
    font-size: 1.6rem;
  }

  .category-grid.modern {
    grid-template-columns: 1fr;
  }

  .card-header {
    flex-wrap: wrap;
  }

  .hero-visual {
    height: 280px;
  }

  .gradient-orb {
    width: 180px;
    height: 180px;
  }

  .stat-item strong {
    font-size: 1.8rem;
  }

  .accent-shapes {
    height: 240px;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links,
  .nav-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links {
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none !important;
    box-shadow: none !important;
  }
  .nav-actions {
    top: 315px;
    padding: 10px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: none !important;
  }
  body.nav-open .nav-links,
  body.nav-open .nav-actions { display: grid; }
  .hero-grid,
  .lab-grid,
  .before-after,
  .split-grid,
  .faq,
  .contact-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 48px;
  }
  .hero-media { order: 0; }
  .hero-visual,
  .paint-orbit { min-height: 460px; }
  .hero-badge { left: 12px; bottom: 12px; }
  .lab-media {
    min-height: 560px;
  }
  .lab-photo-large {
    width: 62%;
    height: 500px;
  }
  .lab-photo-small {
    width: 48%;
    height: 380px;
  }
  .service-grid,
  .project-grid,
  .review-grid,
  .values-grid,
  .process-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero,
  .services-hero,
  .projects-hero,
  .about-hero,
  .contact-hero {
    --hero-word-opacity: 0;
  }
  .site-header {
    width: min(var(--max), calc(100% - 24px));
  }
  .brand span { display: none; }
  .section { padding: 62px 0; }
  .container,
  .hero-grid { width: min(var(--max), calc(100% - 24px)); }
  .section-head {
    display: block;
  }
  .section-head p { margin-top: 14px; }
  .hero-proof,
  .stats-grid,
  .lab-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .values-grid,
  .process-grid,
  .team-grid,
  .footer-grid,
  .form {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .cta-box .btn { width: 100%; }
  .proof-item { min-height: auto; }
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .hero-visual,
  .paint-orbit { min-height: 420px; }
  .lab-media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .lab-photo {
    position: relative;
    width: 100%;
    height: auto;
    inset: auto;
    aspect-ratio: 4 / 5;
  }
  .lab-photo-small {
    aspect-ratio: 4 / 3;
  }
  .kinetic-strip {
    font-size: clamp(3rem, 18vw, 6rem);
  }
  .orbit-panel {
    min-width: 116px;
    padding: 10px;
  }
  .orbit-panel-one { top: 22px; left: 18px; }
  .orbit-panel-two { right: 16px; top: 42%; }
  .orbit-panel-three { left: 18px; bottom: 22px; }
  .page-hero { padding: 58px 0 44px; }
  .contact-panel { padding: 18px; }
}

/* ===== FINAL RESPONSIVE STABILIZATION ===== */
@media (max-width: 980px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-head {
    display: block !important;
  }

  .section-head p {
    margin-top: 14px !important;
    max-width: 100% !important;
  }

  .container,
  .hero-grid,
  .site-header {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    top: 8px;
    min-height: 68px;
  }

  .nav {
    width: 100%;
    min-height: 68px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    top: 70px;
  }

  .nav-actions {
    top: 304px;
    grid-template-columns: 1fr;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero,
  .services-hero,
  .projects-hero,
  .about-hero,
  .contact-hero {
    --hero-word-right: 14px;
    --hero-word-top: 84px;
    --hero-word-size: clamp(5rem, 28vw, 10rem);
    --hero-word-opacity: .035;
    min-height: auto;
    padding: 44px 0 56px;
  }

  .hero-grid,
  .hero-services,
  .hero-projects,
  .hero-about,
  .hero-contact,
  .before-after,
  .split-grid,
  .faq,
  .contact-layout,
  .case-grid,
  .cta-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-services,
  .hero-projects,
  .hero-about,
  .hero-contact {
    min-height: auto;
    padding: 0;
  }

  .services-hero .hero-visual,
  .projects-hero .hero-visual,
  .about-hero .hero-visual,
  .contact-hero .hero-visual {
    min-height: 190px;
    height: 190px;
  }

  .gradient-orb {
    width: 180px;
    height: 180px;
  }

  .hero-media.hero-visual,
  .paint-orbit {
    min-height: 420px;
  }

  .category-grid.modern,
  .subcategory-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .values-grid,
  .process-grid,
  .team-grid,
  .footer-grid,
  .form {
    grid-template-columns: 1fr 1fr;
  }

  .case-study,
  .contact-panel,
  .category-card,
  .service-card,
  .process-card,
  .review-card {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .hero::before {
    display: none;
  }

  h1,
  .hero-services .hero-content h1,
  .hero-projects .hero-content h1,
  .hero-about .hero-content h1,
  .hero-contact .hero-content h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
    line-height: .98;
  }

  h2,
  .section-head.text-center h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
    line-height: 1.02;
  }

  .lead,
  .hero-services .hero-content p,
  .hero-projects .hero-content p,
  .hero-about .hero-content p,
  .hero-contact .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .category-grid.modern,
  .subcategory-grid,
  .service-grid,
  .project-grid,
  .review-grid,
  .values-grid,
  .process-grid,
  .team-grid,
  .footer-grid,
  .form,
  .hero-proof,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .service-card,
  .process-card,
  .review-card,
  .value-card,
  .contact-panel {
    padding: 20px;
  }

  .service-card-wide {
    grid-column: 1 / -1 !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .stat-item {
    padding: 12px 8px !important;
  }
  .stat-item strong {
    font-size: 1.35rem !important;
  }
  .stat-item span {
    font-size: 0.75rem !important;
  }

  .card-header {
    align-items: flex-start;
    gap: 8px;
  }

  .badge {
    margin-top: 2px;
  }

  .service-features {
    gap: 8px;
  }

  .service-list {
    gap: 7px;
  }

  .pill {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-box .btn,
  .form .btn {
    width: 100%;
  }

  .hero-media.hero-visual,
  .paint-orbit {
    min-height: 340px;
  }

  .paint-orbit::before {
    inset: 12px;
  }

  .orbit-panel {
    min-width: 104px;
    padding: 9px 10px;
  }

  .orbit-panel span {
    font-size: .74rem;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .ba-slider {
    aspect-ratio: 4 / 3;
  }

  .case-study {
    overflow: hidden;
  }

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

  .detail-item {
    overflow-wrap: anywhere;
  }

  .reviews-band .section-head {
    gap: 12px;
  }

  .map {
    height: 300px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 440px) {
  .hero,
  .services-hero,
  .projects-hero,
  .about-hero,
  .contact-hero {
    --hero-word-right: 10px;
    --hero-word-top: 104px;
    --hero-word-size: clamp(4.8rem, 31vw, 8rem);
  }

  .container,
  .hero-grid,
  .site-header {
    width: calc(100% - 24px);
  }

  .nav {
    width: 100%;
  }

  .brand strong {
    font-size: .92rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  h1,
  .hero-services .hero-content h1,
  .hero-projects .hero-content h1,
  .hero-about .hero-content h1,
  .hero-contact .hero-content h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem);
  }

  .hero-proof .proof-item {
    padding: 14px;
  }

  .category-card,
  .service-card,
  .process-card,
  .review-card,
  .value-card,
  .contact-panel {
    padding: 18px;
  }

  .category-number {
    font-size: 1.1rem;
    min-width: 30px;
  }

  .category-card h3,
  .service-card h3 {
    font-size: 1.12rem;
  }

  .services-hero .hero-visual,
  .projects-hero .hero-visual,
  .about-hero .hero-visual,
  .contact-hero .hero-visual {
    display: none;
  }

  .hero-media.hero-visual,
  .paint-orbit {
    min-height: 300px;
  }

  .orbit-panel-two {
    top: 38%;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    background:
      linear-gradient(180deg, rgba(7,18,41,.94) 0 60%, rgba(7,18,41,.72)),
      url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=82") center/cover;
  }

  .story-hero-panel {
    min-height: 540px;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .story-frame {
    width: 72%;
    min-height: 520px;
  }

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

  .story-intro {
    position: relative;
    top: auto;
  }

  .story-step:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding-top: 48px;
  }

  .story-hero-panel {
    min-height: auto;
  }

  .story-frame {
    width: 100%;
    min-height: 430px;
  }

  .story-stack {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
    border-width: 6px;
    aspect-ratio: 16 / 10;
  }

  .story-frame-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }

  .story-section {
    padding: 68px 0;
  }

  .story-step {
    padding: 20px;
  }
}

@media (max-width: 980px) {
  .surface-index,
  .keyword-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .surface-index,
  .local-map,
  .keyword-cloud,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .surface-index a {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding-top: 36px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9vw, 2.2rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .home-hero .eyebrow {
    display: flex;
    max-width: 100%;
    font-size: .6rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-hero .lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .home-hero .hero-actions {
    gap: 10px;
  }

  .story-frame {
    min-height: 360px;
  }
}

@media screen and (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body .home-hero {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  body .home-hero .hero-grid {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: 14px !important;
    margin-right: 14px !important;
    gap: 26px !important;
  }

  body .home-hero .hero-copy {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  body .home-hero .hero-copy h1 {
    font-size: 1.1rem !important;
    line-height: 1.1 !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  body .home-hero .hero-actions,
  body .home-hero .hero-proof {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  body .home-hero .hero-copy .eyebrow {
    font-size: .6rem !important;
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }
}

/* ===== HOME MOBILE RESPONSIVENESS FIX ===== */
@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 8px;
    z-index: 90;
    width: calc(100% - 24px);
    margin-top: 8px;
    border-radius: 16px;
  }

  .nav {
    min-height: 64px;
    padding: 0 12px;
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand > span {
    display: flex;
    min-width: 0;
  }

  .brand strong {
    display: block;
    max-width: 145px;
    overflow: hidden;
    color: var(--navy);
    font-size: .98rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span span {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
  }

  .nav-links,
  .nav-actions {
    left: 12px;
    right: 12px;
  }

  .nav-links {
    top: 68px;
  }

  .nav-actions {
    top: 302px;
  }

  .home-hero {
    min-height: auto;
    padding: 36px 0 46px;
    background:
      linear-gradient(180deg, rgba(7,18,41,.94), rgba(7,18,41,.78)),
      url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1100&q=82") center/cover;
  }

  .home-hero .hero-grid,
  body .home-hero .hero-grid {
    width: calc(100% - 28px) !important;
    max-width: 420px !important;
    margin-inline: auto !important;
    gap: 26px !important;
  }

  .home-hero .hero-copy,
  body .home-hero .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-hero .eyebrow,
  body .home-hero .hero-copy .eyebrow {
    display: flex;
    align-items: center;
    max-width: 100%;
    font-size: .68rem !important;
    line-height: 1.25;
    letter-spacing: .04em;
    white-space: normal;
  }

  .home-hero .eyebrow::before {
    width: 26px;
    flex: 0 0 26px;
  }

  .home-hero h1,
  body .home-hero .hero-copy h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7.2vw, 2rem) !important;
    line-height: 1.12 !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-hero .lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-hero .hero-actions,
  body .home-hero .hero-actions,
  .home-hero .hero-proof,
  body .home-hero .hero-proof {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-hero .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .home-hero .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .home-hero .proof-item {
    min-height: auto;
    padding: 14px;
  }

  .home-hero .proof-item strong {
    font-size: 1.35rem;
  }

  .story-hero-panel {
    min-height: auto;
  }

  .home-hero .hero-media .service-media-frame {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .home-hero .hero-badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .section-head h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .before-after,
  .story-grid,
  .cta-box {
    gap: 24px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 118px;
    font-size: .9rem;
  }

  .home-hero h1,
  body .home-hero .hero-copy h1 {
    font-size: 1.45rem !important;
  }

  .home-hero .lead {
    font-size: .96rem;
  }
}

/* ===== CUSTOM PREMIUM MODAL CONFIRMATION ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 16, 36, 0.82);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-box {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(40, 169, 255, 0.25);
  border-radius: 16px;
  padding: 38px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(7, 18, 41, 0.35);
  text-align: center;
  transform: scale(0.92);
  animation: scaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-box h3 {
  color: var(--navy);
  font-size: 1.45rem;
  margin: 0 0 14px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.modal-box p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.modal-redirect-text {
  background: #f0f8ff;
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
  color: var(--blue);
}

.modal-redirect-text strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.modal-actions .btn {
  min-width: 130px;
}

/* ===== SOCIAL MEDIA ICONS ===== */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #d5e7f2;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== MOBILE HEADER + FOOTER POLISH ===== */
@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 28px rgba(7, 18, 41, .1);
  }

  .nav {
    min-height: 64px;
    padding: 0 14px;
  }

  .brand > span {
    display: flex !important;
    min-width: 0;
  }

  .brand strong {
    display: block !important;
    max-width: 170px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span span {
    display: none !important;
  }

  .nav-links,
  .nav-actions {
    left: 12px;
    right: 12px;
  }

  .site-footer {
    padding: 38px 0 92px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-logo img {
    width: 44px;
    height: 44px;
  }

  .site-footer p {
    margin: 0;
    line-height: 1.65;
  }

  .site-footer h3 {
    margin: 0 0 12px;
    font-size: 1rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 16px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.08);
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    padding-right: 68px;
    line-height: 1.5;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .call-float {
    right: 14px;
    bottom: 82px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 138px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ===== COMPACT MOBILE FOOTER REDESIGN ===== */
@media (max-width: 680px) {
  .site-footer {
    padding: 28px 0 88px !important;
  }

  .site-footer .container {
    width: calc(100% - 24px);
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .footer-grid > div {
    min-width: 0;
  }

  .footer-brand,
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
  }

  .footer-logo {
    margin-bottom: 10px !important;
  }

  .footer-logo img {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px;
  }

  .footer-logo strong {
    color: var(--white);
    font-size: 1rem;
  }

  .footer-brand p,
  .footer-grid > div:first-child p {
    font-size: .95rem;
    line-height: 1.55;
  }

  .footer-socials {
    margin-top: 14px !important;
  }

  .footer-column,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
  }

  .footer-contact,
  .footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .site-footer h3 {
    margin-bottom: 10px !important;
    color: var(--white);
    font-size: .95rem;
  }

  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .footer-links a {
    display: block;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    color: #e4f2fb;
    font-size: .92rem;
    line-height: 1.2;
  }

  .footer-contact p,
  .footer-grid > div:nth-child(4) p {
    color: #e4f2fb;
    font-size: .94rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    width: calc(100% - 24px);
    margin-top: 14px !important;
    padding: 14px 70px 0 0 !important;
    font-size: .82rem;
  }
}

@media (max-width: 360px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-contact,
  .footer-grid > div:nth-child(4) {
    grid-column: auto;
  }
}

/* ===== SERVICES PAGE MOBILE FIX ===== */
.service-card-wide {
  grid-column: 1 / 3;
}

@media (max-width: 980px) {
  .services-hero {
    padding: 42px 0 48px;
  }

  .services-hero .hero-services {
    min-height: auto;
  }

  .services-hero .hero-visual {
    min-height: 160px;
    height: 160px;
  }

  .split-grid,
  .split-grid.image-left {
    grid-template-columns: 1fr;
  }

  .split-grid.image-left .service-media-block {
    order: 2;
  }

  .split-grid.image-left .service-details-block {
    order: 1;
  }
}

@media (max-width: 680px) {
  .services-hero {
    padding: 34px 0 40px;
    background: linear-gradient(135deg, #f6fbff 0%, #edf9f6 100%);
  }

  .services-hero .hero-services {
    width: calc(100% - 24px);
    gap: 18px;
  }

  .services-hero .hero-content h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
    line-height: 1.08;
  }

  .services-hero .lead {
    margin-top: 16px;
    font-size: .98rem;
    line-height: 1.65;
  }

  .services-hero .hero-actions {
    margin-top: 22px;
  }

  .services-hero .hero-visual {
    display: none;
  }

  .brand-system {
    padding: 44px 0;
  }

  .brand-system .section-head {
    margin-bottom: 22px;
  }

  .brand-system .section-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .surface-index {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin-top: 18px;
  }

  .surface-index a {
    min-height: auto;
    padding: 14px;
  }

  .surface-index strong {
    margin-top: 6px;
    font-size: 1rem;
  }

  .surface-index small {
    margin-top: 8px;
    font-size: .82rem;
    line-height: 1.35;
  }

  .service-details-block .section-head {
    margin-bottom: 20px;
  }

  .service-details-block .section-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .service-details-block .section-head p {
    font-size: .96rem;
  }

  .subcategory-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .service-card,
  .service-card-wide {
    grid-column: auto !important;
    min-height: auto;
    padding: 18px;
  }

  .service-card .service-btn {
    right: 16px !important;
    bottom: 16px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.95rem !important;
  }

  .service-card h3 {
    font-size: 1.12rem;
    line-height: 1.18;
  }

  .service-card p {
    font-size: .94rem;
    line-height: 1.55;
  }

  .service-list {
    margin-top: 14px;
  }

  .pill {
    min-height: 28px;
    padding: 5px 9px;
    font-size: .76rem;
  }

  .service-media-block {
    margin-top: 4px;
  }

  .service-media-frame {
    max-height: 300px;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .service-media-frame::before {
    inset: 10px;
  }

  .cta-band .cta-box h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }
}

@media (max-width: 380px) {
  .services-hero .hero-content h1,
  .service-details-block .section-head h2,
  .brand-system .section-head h2 {
    font-size: 1.55rem !important;
  }

  .service-card {
    padding: 16px;
  }
}

/* ===== SERVICES MOBILE REFINEMENT ===== */
@media (max-width: 680px) {
  .site-header {
    position: sticky !important;
    top: 8px !important;
    z-index: 200;
    width: calc(100% - 24px) !important;
    margin: 8px auto 0 !important;
    border: 1px solid rgba(220, 232, 240, .82) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 12px 30px rgba(7,18,41,.12) !important;
  }

  .services-hero {
    margin-top: -72px;
    padding-top: 110px;
  }

  .services-hero ~ .section:not(.brand-system) {
    background: #ffffff;
  }

  .services-hero ~ .section.alt {
    background: #f7fcff;
  }

  .service-details-block .section-head {
    display: block;
    padding: 0;
    margin-bottom: 16px;
  }

  .service-details-block .eyebrow {
    display: inline-flex;
    justify-content: flex-start;
    max-width: 100%;
    margin-bottom: 9px;
    color: #4d6075;
    font-size: .66rem;
    line-height: 1.3;
    letter-spacing: .06em;
    text-align: left;
    white-space: normal;
  }

  .service-details-block .eyebrow::before {
    width: 22px;
    flex: 0 0 22px;
  }

  .service-details-block .section-head h2 {
    max-width: 100%;
    color: var(--navy);
    font-size: clamp(1.55rem, 7vw, 1.95rem) !important;
    line-height: 1.12;
  }

  .service-details-block .section-head p {
    margin-top: 12px;
    color: #526a82;
    font-size: .95rem;
    line-height: 1.58;
  }

  .services-hero ~ .section .container {
    width: calc(100% - 24px);
  }

  .split-grid,
  .split-grid.image-left {
    gap: 18px;
  }

  .subcategory-grid {
    gap: 12px !important;
  }

  .service-card,
  .service-card-wide {
    border-radius: 12px;
    padding: 16px !important;
    box-shadow: 0 10px 24px rgba(7,18,41,.06);
  }

  .service-card h3 {
    font-size: 1.04rem !important;
    line-height: 1.22;
  }

  .service-card p {
    margin-top: 10px;
    color: #526a82;
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }

  .service-list {
    gap: 7px;
    margin-top: 13px !important;
    padding-right: 58px;
  }

  .pill {
    min-height: 26px;
    padding: 5px 9px;
    font-size: .72rem !important;
    line-height: 1;
  }

  .service-card .service-btn {
    right: 16px !important;
    bottom: 16px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 0.95rem !important;
  }

  .service-media-frame {
    max-height: 240px;
  }
}

@media (max-width: 380px) {
  .service-details-block .section-head h2 {
    font-size: 1.42rem !important;
  }

  .service-details-block .eyebrow {
    font-size: .6rem;
  }
}

/* ===== FINAL MOBILE HEADER FIX ===== */
@media (max-width: 680px) {
  body {
    padding-top: 82px;
  }

  .site-header {
    position: fixed !important;
    top: 8px !important;
    left: 50% !important;
    right: auto !important;
    z-index: 1000 !important;
    width: calc(100% - 24px) !important;
    max-width: 520px !important;
    margin: 0 !important;
    border: 1px solid rgba(220, 232, 240, .9) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 14px 34px rgba(7, 18, 41, .14) !important;
    transform: translateX(-50%) !important;
  }

  .nav {
    min-height: 64px;
    padding: 0 12px;
  }

  .brand > span {
    display: flex !important;
  }

  .brand strong {
    display: block !important;
    max-width: 170px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span span {
    display: none !important;
  }

  .nav-links,
  .nav-actions {
    left: 10px !important;
    right: 10px !important;
  }

  .nav-links {
    top: 68px !important;
  }

  .nav-actions {
    top: 302px !important;
  }

  .services-hero {
    margin-top: 0 !important;
    padding-top: 34px !important;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.92); }
  to { transform: scale(1); }
}
