/* ============================================================
   JARBOES CONSTRUCTION — WORLD CLASS STYLESHEET
   Blue + Orange | Pure CSS | No Framework
   ============================================================ */

/* --- DESIGN TOKENS ---------------------------------------- */
:root {
  /* Navy scale */
  --navy-950: #040E1C;
  --navy-900: #0B1D3A;
  --navy-800: #122950;
  --navy-700: #1A3C6E;
  --navy-600: #1E4A8A;

  /* Blue scale */
  --blue-500: #2756C5;
  --blue-400: #3B7DDD;
  --blue-200: #93C0EE;
  --blue-100: #DBEAFE;

  /* Orange scale */
  --orange-700: #A84800;
  --orange-600: #C95F0A;
  --orange-500: #E8721C;
  --orange-400: #F5912A;
  --orange-300: #F5A623;
  --orange-100: #FFF3E6;

  /* Neutrals */
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white:    #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale */
  --text-xs:  clamp(0.7rem,  1vw,   0.75rem);
  --text-sm:  clamp(0.8rem,  1.5vw, 0.875rem);
  --text-base:clamp(0.9rem,  2vw,   1rem);
  --text-lg:  clamp(1rem,    2vw,   1.125rem);
  --text-xl:  clamp(1.1rem,  2.5vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 3vw,   1.5rem);
  --text-3xl: clamp(1.5rem,  4vw,   1.875rem);
  --text-4xl: clamp(1.75rem, 5vw,   2.5rem);
  --text-5xl: clamp(2.2rem,  6vw,   3.25rem);
  --text-6xl: clamp(2.8rem,  7vw,   4.5rem);
  --text-7xl: clamp(3.5rem,  9vw,   6rem);

  /* Spacing */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-8:  2rem;     --sp-10: 2.5rem;   --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;     --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w:      1280px;
  --pad-x:      clamp(1.25rem, 5vw, 4rem);
  --section-py: clamp(5rem, 10vw, 9rem);

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --sh-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --sh-lg: 0 16px 48px rgba(0,0,0,0.11), 0 6px 20px rgba(0,0,0,0.07);
  --sh-xl: 0 32px 80px rgba(0,0,0,0.15), 0 12px 32px rgba(0,0,0,0.09);
  --sh-orange: 0 8px 28px rgba(232,114,28,0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:   150ms var(--ease-out);
  --t-base:   300ms var(--ease-out);
  --t-slow:   600ms var(--ease-out);
}

/* --- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* --- LAYOUT HELPERS --------------------------------------- */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
}

/* --- REVEAL ANIMATION ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* --- SECTION HEADER --------------------------------------- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--sp-16); }
.section-header--left { text-align: left; margin: 0 0 var(--sp-8); max-width: none; }

.section-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  background: var(--orange-100);
  padding: 0.3em 1em;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: var(--text-5xl);
  color: var(--navy-900);
  margin-bottom: var(--sp-4);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: 1.85;
}

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--sh-orange);
}
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 12px 36px rgba(232,114,28,0.45); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.55); }

.btn--white {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.btn--white:hover { background: var(--gray-100); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--lg { padding: 1.1rem 2.5rem; font-size: var(--text-base); }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: var(--sp-5) 0;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}
.nav--solid {
  background: var(--navy-900);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  padding: var(--sp-3) 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  /* logo is dark on transparent — invert for dark nav bg */
  filter: brightness(0) invert(1);
  transition: opacity var(--t-fast);
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__link--cta {
  background: var(--orange-500) !important;
  color: var(--white) !important;
  margin-left: var(--sp-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__link--cta:hover { background: var(--orange-600) !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: var(--t-base);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(39,86,197,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,86,197,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,60,110,0.7) 0%, transparent 70%);
  top: -220px; right: -80px;
  animation: orbDrift1 18s var(--ease-io) infinite alternate;
}
.hero__orb--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(232,114,28,0.22) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  animation: orbDrift2 22s var(--ease-io) infinite alternate;
}
.hero__orb--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(39,86,197,0.28) 0%, transparent 70%);
  top: 35%; right: 28%;
  animation: orbDrift1 14s 3s var(--ease-io) infinite alternate;
}
.hero__diagonal {
  position: absolute;
  bottom: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(30,74,138,0.12) 100%);
}
@keyframes orbDrift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, 30px); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, -25px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(6rem + var(--pad-x)) var(--pad-x) var(--sp-24);
}
.hero__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-400);
  border: 1px solid rgba(232,114,28,0.3);
  padding: 0.4em 1.2em;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) both;
}
.hero__headline {
  font-size: var(--text-7xl);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: var(--sp-6);
  max-width: 14ch;
  animation: fadeUp 0.8s 0.08s var(--ease-out) both;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--orange-400); }

.hero__sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.65);
  max-width: 56ch;
  line-height: 1.85;
  margin-bottom: var(--sp-10);
  font-weight: 300;
  animation: fadeUp 0.8s 0.16s var(--ease-out) both;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  animation: fadeUp 0.8s 0.24s var(--ease-out) both;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.32s var(--ease-out) both;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.42);
}
.hero__trust-item svg { color: var(--orange-400); flex-shrink: 0; }
.hero__trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.25);
  transition: color var(--t-fast);
  animation: scrollBounce 2.5s 1.5s infinite;
}
.hero__scroll:hover { color: rgba(255,255,255,0.6); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-16) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--sp-2);
  color: var(--white);
}
.stat__num .counter {
  color: var(--orange-400);
}
.stat__num span:not(.counter) {
  color: var(--orange-400);
}
.stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--gray-50); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: background var(--t-base);
}
.service-card:hover .service-card__icon { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); }
.service-card__icon svg { width: 22px; height: 22px; color: var(--white); }
.service-card__title { font-size: var(--text-xl); color: var(--navy-900); margin-bottom: var(--sp-3); }
.service-card__desc { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.82; margin-bottom: var(--sp-5); }
.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-700);
  transition: color var(--t-fast);
}
.service-card:hover .service-card__link { color: var(--orange-500); }

.services__also {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-12);
  color: var(--white);
}
.services__also p { font-size: var(--text-lg); color: rgba(255,255,255,0.6); }
.services__also strong { color: rgba(255,255,255,0.88); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  align-items: center;
}
.about__visual { position: relative; }
.about__img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/6;
}
.about__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.about__img-frame:hover img { transform: scale(1.05); }
.about__accent-border {
  position: absolute;
  top: -18px; left: -18px;
  right: 36px; bottom: 36px;
  border: 3px solid var(--orange-400);
  border-radius: var(--r-xl);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}
.about__float-card {
  position: absolute;
  bottom: var(--sp-6);
  right: calc(-1 * var(--sp-5));
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-5) var(--sp-8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
}
.about__float-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.about__float-label {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.about__body {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.88;
  margin-bottom: var(--sp-4);
}
.about__list { display: flex; flex-direction: column; gap: var(--sp-5); margin-top: var(--sp-8); }
.about__list-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.about__list-check {
  width: 26px; height: 26px;
  background: var(--orange-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.about__list-check svg { width: 12px; height: 12px; color: var(--white); }
.about__list-item strong { display: block; font-size: var(--text-base); color: var(--navy-900); margin-bottom: 3px; font-family: var(--font-body); }
.about__list-item p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy-950); }
.process .section-tag { background: rgba(232,114,28,0.12); }
.process__title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.42); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,114,28,0.25) 30%, rgba(232,114,28,0.25) 70%, transparent);
  pointer-events: none;
}
.process-step {
  text-align: center;
  padding: var(--sp-4) var(--sp-4) var(--sp-8);
}
.process-step__num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--orange-400);
  margin: 0 auto var(--sp-6);
  transition: background var(--t-base), box-shadow var(--t-base), color var(--t-base);
}
.process-step:hover .process-step__num {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  box-shadow: var(--sh-orange);
  color: var(--white);
}
.process-step h3 { font-size: var(--text-xl); color: var(--white); margin-bottom: var(--sp-3); }
.process-step p { font-size: var(--text-sm); color: rgba(255,255,255,0.4); line-height: 1.82; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.work { background: var(--white); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-4);
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--gray-200);
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
  display: block;
}
.work-item:hover img { transform: scale(1.07); }
.work-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(4,14,28,0.92) 0%,
    rgba(4,14,28,0.3) 45%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  opacity: 0;
  transition: opacity var(--t-base);
}
.work-item:hover .work-item__overlay { opacity: 1; }
.work-item__cat {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: var(--sp-2);
}
.work-item__overlay h3 { font-size: var(--text-xl); color: var(--white); }

/* Grid layout */
.work-item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}
.work-item__col {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.work-item__col .work-item { flex: 1; }
.work-item--wide {
  grid-column: 3;
  aspect-ratio: 4/3;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--gray-50); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.review-card--featured {
  background: var(--navy-900);
  border-color: var(--navy-800);
  transform: scale(1.04);
}
.review-card--featured:hover { transform: scale(1.04) translateY(-5px); }
.review-card__stars { display: flex; gap: 3px; margin-bottom: var(--sp-4); }
.review-card__stars svg { width: 15px; height: 15px; color: var(--orange-400); }
.review-card blockquote p {
  font-size: var(--text-base);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: var(--sp-6);
}
.review-card:not(.review-card--featured) blockquote p { color: var(--gray-600); }
.review-card--featured blockquote p { color: rgba(255,255,255,0.75); }
.review-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.review-card__avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
}
.review-card:not(.review-card--featured) .review-card__author strong { color: var(--gray-900); }
.review-card--featured .review-card__author strong { color: var(--white); }
.review-card__author span { font-size: var(--text-xs); }
.review-card:not(.review-card--featured) .review-card__author span { color: var(--gray-400); }
.review-card--featured .review-card__author span { color: rgba(255,255,255,0.35); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 55%, var(--orange-400) 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.cta-band__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
  flex-wrap: wrap;
}
.cta-band__text h2 { font-size: var(--text-4xl); color: var(--white); margin-bottom: var(--sp-3); }
.cta-band__text p { font-size: var(--text-lg); color: rgba(255,255,255,0.72); max-width: 48ch; }
.cta-band__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-20);
  align-items: start;
}
.contact__info > p { font-size: var(--text-lg); color: var(--gray-500); line-height: 1.85; margin-bottom: var(--sp-8); }
.contact__details { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact__detail { display: flex; align-items: flex-start; gap: var(--sp-4); }
.contact__detail-icon {
  width: 44px; height: 44px;
  background: var(--orange-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; color: var(--orange-500); }
.contact__detail strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy-900); margin-bottom: 3px; font-family: var(--font-body); }
.contact__detail a, .contact__detail span { font-size: var(--text-base); color: var(--gray-600); }
.contact__detail a:hover { color: var(--orange-500); }

.contact__form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(27,62,114,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: var(--text-xs); color: var(--gray-400); text-align: center; margin-top: var(--sp-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer__top {
  padding: var(--sp-20) 0 var(--sp-16);
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--sp-20);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer__logo:hover .footer__logo-img { opacity: 1; }
.footer__brand > p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  max-width: 34ch;
  margin-bottom: var(--sp-6);
}
.footer__contact-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__contact-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer__contact-links a:hover { color: var(--orange-400); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  padding-top: var(--sp-1);
}
.footer__nav-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: var(--sp-5);
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__nav-col a, .footer__nav-col span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.footer__nav-col a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.2); }
.footer__tagline { font-style: italic; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
  .process__steps::before { display: none; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .review-card--featured { transform: none; }
  .review-card--featured:hover { transform: translateY(-5px); }

  .about__float-card { right: var(--sp-4); }

  .footer__top { grid-template-columns: 1fr; gap: var(--sp-12); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,14,28,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    z-index: 1000;
    backdrop-filter: blur(12px);
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: var(--text-2xl); padding: var(--sp-3) var(--sp-8); }
  .nav__link--cta { margin-left: 0; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); padding: var(--sp-12) var(--pad-x); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .services__grid { grid-template-columns: 1fr; }
  .services__also { flex-direction: column; text-align: center; padding: var(--sp-8); }

  .about__inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about__visual { order: -1; }
  .about__float-card { right: var(--sp-4); bottom: var(--sp-4); }
  .about__accent-border { display: none; }

  .work__grid {
    display: flex;
    flex-direction: column;
  }
  .work-item--tall, .work-item--wide { aspect-ratio: 4/3; }
  .work-item__col { gap: var(--sp-4); }
  .work-item__overlay { opacity: 1; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .contact__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .form-row { grid-template-columns: 1fr; }

  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: var(--sp-2); }
  .hero__trust-sep { display: none; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__badge, .hero__headline, .hero__sub, .hero__actions, .hero__trust { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* Nav solid (non-hero pages) */
.nav--solid { position: sticky; background: var(--navy-900); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav__link--active { color: var(--orange-400) !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* PAGE HERO */
.page-hero { position: relative; background: var(--navy-900); padding: 7rem 0 5rem; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero__orb { position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,114,28,0.18) 0%, transparent 70%); }
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); position: relative; z-index: 1; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: var(--white); line-height: 1.1; margin: 0.75rem 0 1.25rem; }
.page-hero__sub { font-size: var(--text-lg); color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.65; }

/* ABOUT PAGE */
.about--page { padding: var(--sp-16) 0; }
.about--page .about__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }

/* SERVICES EXTRA */
.services__also--light { text-align: center; padding: 2.5rem; background: var(--orange-100); border-radius: var(--r-lg); border: 1px solid rgba(232,114,28,0.2); flex-direction: column; justify-content: center; }
.services__also--light p { font-size: var(--text-lg); margin-bottom: 1.5rem; color: var(--navy-800); }

/* REVIEWS PAGE */
.reviews--page { padding: var(--sp-16) 0; background: var(--white); }
.reviews__grid--full { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .reviews__grid--full { grid-template-columns: 1fr; } }

/* CONTACT PAGE */
.contact--page { background: var(--gray-50); }
.contact--page .contact__inner { max-width: var(--max-w); margin: 0 auto; padding: var(--sp-16) var(--sp-6); display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-12); align-items: start; }
@media (max-width: 900px) { .contact--page .contact__inner { grid-template-columns: 1fr; } }
.contact__info-cards { display: flex; flex-direction: column; gap: var(--sp-5); margin: var(--sp-8) 0; }
.contact__info-card { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact__info-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--navy-900); color: var(--orange-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__info-icon svg { width: 22px; height: 22px; }
.contact__info-card h3 { font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-900); margin-bottom: 0.25rem; }
.contact__info-card a { color: var(--orange-600); font-weight: 600; text-decoration: none; display: block; }
.contact__info-card a:hover { text-decoration: underline; }
.contact__info-card p { font-size: var(--text-sm); color: var(--gray-500); margin-top: 0.25rem; }
.contact__service-area { padding: var(--sp-5); background: var(--navy-900); border-radius: var(--r-md); color: rgba(255,255,255,0.7); }
.contact__service-area h3 { color: var(--orange-400); font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--sp-2); }
.contact__service-area p { font-size: var(--text-sm); line-height: 1.65; }
.contact__form-wrap { background: var(--white); border-radius: var(--r-xl); padding: var(--sp-8); box-shadow: 0 4px 32px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); }
.contact__form-header { margin-bottom: var(--sp-6); }
.contact__form-header h3 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--navy-900); margin-bottom: 0.5rem; }
.contact__form-header p { font-size: var(--text-sm); color: var(--gray-500); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn--full { width: 100%; justify-content: center; gap: var(--sp-2); }
.contact__disclaimer { font-size: var(--text-xs); color: var(--gray-400); text-align: center; margin-top: var(--sp-3); }
.contact__disclaimer a { color: var(--orange-500); }
.form-required { color: var(--orange-500); }

/* CTA BAND */
.cta-band { position: relative; background: var(--navy-900); padding: var(--sp-16) 0; overflow: hidden; }
.cta-band__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.cta-band__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8); position: relative; z-index: 1; }
@media (max-width: 760px) { .cta-band__inner { flex-direction: column; text-align: center; } }
.cta-band__text h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 0.5rem; }
.cta-band__text p { color: rgba(255,255,255,0.55); font-size: var(--text-base); max-width: 480px; }
.cta-band__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; flex-wrap: wrap; }
.btn--white { background: var(--white); color: var(--navy-900); border: 2px solid var(--white); display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-3) var(--sp-6); border-radius: var(--r-full); font-weight: 700; text-decoration: none; transition: all var(--t-fast); }
.btn--white:hover { background: transparent; color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); padding: var(--sp-3) var(--sp-6); border-radius: var(--r-full); font-weight: 600; text-decoration: none; transition: all var(--t-fast); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

