:root {
  --blue-950: #03152f;
  --blue-900: #072f6b;
  --blue-800: #0b438f;
  --blue-700: #1455af;
  --blue-500: #2f76d6;
  --gold-600: #b78624;
  --gold-500: #c89b3c;
  --gold-300: #e3c67a;
  --white-100: #f6f9ff;
  --white-200: #edf3ff;
  --ink-900: #101c30;
  --ink-700: #395173;
  --line: rgba(8, 47, 107, 0.12);
  --shadow: 0 28px 50px rgba(6, 33, 81, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(1200px 700px at 100% -10%, rgba(17, 90, 182, 0.2), transparent 60%),
    radial-gradient(980px 620px at -8% 20%, rgba(200, 155, 60, 0.2), transparent 58%),
    linear-gradient(180deg, #f7faff 0%, #edf4ff 42%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(14, 64, 126, 0.08);
  box-shadow: 0 10px 30px rgba(4, 33, 83, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: min(210px, 38vw);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.main-nav a {
  padding: 0.42rem 0.2rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-700));
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.contact-chip {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(10, 63, 133, 0.2);
  background: #fff;
  cursor: pointer;
}

.hero {
  padding: 5.2rem 0 4.6rem;
}

.hero-premium {
  position: relative;
  min-height: min(90vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 6.4rem 0 4.8rem;
}

.hero-premium-bg {
  position: absolute;
  inset: 0;
}

.hero-premium-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.hero-premium-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(3, 21, 47, 0.9) 18%, rgba(7, 47, 107, 0.72) 52%, rgba(3, 21, 47, 0.54) 100%),
    linear-gradient(180deg, rgba(3, 21, 47, 0.1) 0%, rgba(3, 21, 47, 0.7) 100%);
}

.hero-premium-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.54fr;
  gap: 1.4rem;
  align-items: end;
}

.hero-copy .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.hero-copy h1 {
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 55ch;
}

.hero-copy .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-float-card {
  border-radius: 24px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(8px);
  color: #fff;
}

.hero-float-card h3 {
  margin: 0;
  color: #fff;
}

.hero-float-card p {
  margin: 0.55rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.hero-float-card .list li {
  color: rgba(255, 255, 255, 0.95);
}

.hero-float-card .list li::before {
  background: #ffe2a4;
}

.hero-float-card .btn {
  margin-top: 0.9rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.trust-strip {
  margin-top: -1.6rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-grid article {
  border-radius: 16px;
  border: 1px solid rgba(10, 63, 133, 0.16);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 26px rgba(6, 36, 88, 0.09);
}

.trust-grid strong {
  display: block;
  font-size: 1.35rem;
  color: var(--blue-900);
  line-height: 1.1;
}

.trust-grid span {
  color: var(--ink-700);
  font-size: 0.86rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(14, 66, 136, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.82);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), #ddbe75);
}

h1,
.h1 {
  margin: 1rem 0;
  line-height: 1.08;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 5.1vw, 4rem);
  color: var(--blue-950);
}

.lead {
  color: var(--ink-700);
  max-width: 60ch;
  font-size: 1.02rem;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 16px 28px rgba(12, 66, 136, 0.26);
}

.btn-secondary {
  color: var(--blue-900);
  border-color: rgba(11, 60, 127, 0.25);
  background: rgba(255, 255, 255, 0.8);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(12, 67, 140, 0.16);
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 21, 47, 0.24) 100%);
}

.hero-card .tag {
  position: absolute;
  right: 14px;
  top: 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--blue-900);
}

.section {
  padding: 4.3rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  color: var(--blue-950);
}

.section-text {
  max-width: 62ch;
  color: var(--ink-700);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 16px 35px rgba(11, 60, 127, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(11, 60, 127, 0.15);
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 1rem;
}

.service-card h3 {
  margin-top: 0.9rem;
}

.service-card p {
  padding-bottom: 1.05rem;
}

.service-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-quick-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 66, 135, 0.2);
  background: #fff;
  color: var(--blue-900);
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.service-quick-nav a:hover {
  background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
  color: #fff;
  border-color: transparent;
}

.category-stack {
  display: grid;
  gap: 1rem;
}

.category-item {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 66, 135, 0.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(6, 33, 81, 0.08);
}

.category-item.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.category-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.category-item > div {
  padding: 1.1rem 1.1rem 1.2rem;
}

.category-item h3 {
  margin: 0;
  font-size: 1.28rem;
  color: var(--blue-900);
}

.category-item p {
  margin: 0.55rem 0 0.8rem;
  color: var(--ink-700);
}

.category-item .btn {
  margin-top: 0.8rem;
}

.category-item.reverse img {
  order: 2;
}

.category-item.reverse > div {
  order: 1;
}

.card h3 {
  margin: 0 0 0.55rem;
  color: var(--blue-900);
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-700);
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
  position: absolute;
  left: 0;
  top: 0.63rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.stat strong {
  font-size: 1.45rem;
  color: var(--blue-900);
  display: block;
  line-height: 1.1;
}

.stat span {
  font-size: 0.87rem;
  color: var(--ink-700);
}

.cta {
  background:
    linear-gradient(140deg, rgba(7, 47, 107, 0.96), rgba(11, 67, 143, 0.95)),
    url("../img/photos/photo-01.jpg") center/cover no-repeat;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: #fff;
  margin-bottom: 0.45rem;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.before-after-wrap {
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid rgba(11, 66, 135, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 255, 0.92));
}

.before-after-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.ba-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(7, 47, 107, 0.16);
  background: #fff;
  touch-action: none;
  user-select: none;
}

.ba-before,
.ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  z-index: 3;
  pointer-events: none;
}

.ba-grip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  background: #fff;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  z-index: 4;
  cursor: ew-resize;
}

.ba-range::-webkit-slider-thumb {
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: none;
}

.ba-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  border: none;
}

.ba-label {
  position: absolute;
  bottom: 0.85rem;
  z-index: 2;
  font-size: 0.82rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.16);
}

.ba-label-before {
  left: 0.9rem;
}

.ba-label-after {
  right: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.references-fusion {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.ref-preview-grid {
  display: grid;
  gap: 0.7rem;
  border-radius: 16px;
  padding: 0.8rem;
  border: 1px solid rgba(11, 66, 135, 0.16);
  background: #fff;
}

.ref-preview-grid article {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 66, 135, 0.1);
  background: #f9fcff;
}

.ref-preview-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ref-preview-grid p {
  margin: 0;
  padding: 0.5rem 0.65rem 0.6rem;
  color: var(--ink-700);
  font-size: 0.83rem;
}

.ref-preview-grid .btn {
  width: 100%;
}

.testimonial {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(11, 66, 135, 0.16);
  background: #fff;
  padding: 1rem 1rem 0.9rem;
}

.testimonial p {
  margin: 0;
  color: var(--ink-700);
}

.testimonial cite {
  margin-top: 0.7rem;
  display: block;
  font-style: normal;
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.85rem;
}

.process-shell {
  padding: 0.7rem 0 0.35rem;
}

.process-flow {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0.5rem 0.25rem 0.4rem;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 89, 186, 0.2), rgba(200, 155, 60, 0.3), rgba(22, 89, 186, 0.18));
  pointer-events: none;
}

.process-step {
  position: relative;
  border: 1px solid rgba(11, 66, 135, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(120px 70px at 100% 0%, rgba(22, 89, 186, 0.12), transparent 70%),
    radial-gradient(110px 80px at 0% 100%, rgba(200, 155, 60, 0.1), transparent 74%),
    linear-gradient(165deg, #ffffff, #f4f8ff);
  padding: 0.6rem 0.55rem 0.65rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  box-shadow: 0 12px 24px rgba(7, 41, 94, 0.13);
  isolation: isolate;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
  z-index: -1;
}

.process-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -0.55rem;
  top: 36px;
  transform: translateY(-50%);
  color: #f4f8ff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(7, 41, 94, 0.2);
  z-index: 2;
}

.process-step:hover,
.process-step:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 28px rgba(7, 41, 94, 0.16);
  border-color: rgba(200, 155, 60, 0.45);
}

.process-top {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  border: 1px solid rgba(200, 155, 60, 0.3);
  box-shadow: 0 11px 18px rgba(16, 66, 140, 0.16);
  position: relative;
}

.process-top::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 22%;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.process-bg-1 {
  background: linear-gradient(160deg, #eef5ff, #f7f0e2);
}

.process-bg-2 {
  background: linear-gradient(160deg, #f0f8ff, #edf5ff);
}

.process-bg-3 {
  background: linear-gradient(160deg, #fdf4df, #f4f7ff);
}

.process-bg-4 {
  background: linear-gradient(160deg, #ebf5ff, #f7f3e7);
}

.process-bg-5 {
  background: linear-gradient(160deg, #f8f0df, #eef6ff);
}

.process-bg-6 {
  background: linear-gradient(160deg, #edf6ff, #f7f1df);
}

.process-icon-svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 12px rgba(38, 66, 120, 0.18));
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin: 0.5rem 0 0.2rem;
  color: var(--blue-900);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  width: 100%;
}

.process-desc {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.68rem;
  line-height: 1.3;
  width: 100%;
  max-width: none;
  overflow-wrap: anywhere;
  word-break: normal;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 180;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(145deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 16px 30px rgba(116, 82, 17, 0.35);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.2rem;
}

.contact-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
}

.contact-card h3 {
  margin: 0;
  color: var(--blue-900);
}

.contact-items {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.contact-items strong {
  display: block;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.office-map {
  margin-top: 1rem;
  border: 1px solid rgba(11, 66, 135, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(560px 240px at 100% -20%, rgba(15, 88, 180, 0.12), transparent 65%),
    radial-gradient(380px 180px at 0% 0%, rgba(200, 155, 60, 0.15), transparent 70%),
    #f7fbff;
  box-shadow: 0 14px 28px rgba(7, 41, 94, 0.11);
}

.office-map-head {
  padding: 0.85rem 0.95rem 0.75rem;
  border-bottom: 1px solid rgba(11, 66, 135, 0.12);
}

.office-map-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--blue-800);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.office-map-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.office-map-head h4 {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--blue-900);
}

.office-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

.office-map-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem;
  border-top: 1px solid rgba(11, 66, 135, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.map-link {
  width: 100%;
  margin: 0;
}

form {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.2rem;
}

label {
  display: grid;
  gap: 0.32rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--blue-900);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(9, 56, 118, 0.2);
  background: #fff;
  color: var(--ink-900);
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.2);
}

.form-note {
  margin: 0.45rem 0 0;
  font-size: 0.83rem;
  color: var(--ink-700);
}

.form-status {
  min-height: 1.25em;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--blue-900);
}

.filter-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid rgba(11, 65, 135, 0.2);
  background: #fff;
  color: var(--blue-900);
  min-height: 38px;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.84rem;
  cursor: pointer;
}

.filter-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
}

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

.ref-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  cursor: pointer;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 56, 118, 0.16);
}

.ref-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ref-count {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--blue-900);
  font-weight: 600;
}

.ref-toggle {
  margin-top: 0.7rem;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(11, 66, 135, 0.22);
  background: #fff;
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.ref-expand {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(11, 66, 135, 0.2);
}

.ref-expand-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-700);
}

.ref-expand-thumbs {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.ref-thumb-btn {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #e9f1ff;
}

.ref-thumb-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ref-thumb-caption {
  display: block;
  padding: 0.35rem 0.42rem 0.42rem;
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--ink-700);
  background: #f6f9ff;
  text-align: left;
}

.ref-content {
  padding: 1rem;
}

.ref-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
}

.badge {
  font-size: 0.76rem;
  background: rgba(227, 198, 122, 0.3);
  color: #694a0f;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 16, 38, 0.76);
  backdrop-filter: blur(4px);
}

.gallery-dialog {
  position: relative;
  width: min(980px, 92vw);
  max-height: 90vh;
  margin: 5vh auto;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11, 66, 135, 0.18);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.gallery-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  z-index: 2;
  border: none;
  background: #fff;
  color: var(--blue-900);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #eff5ff;
}

.gallery-main img {
  width: 100%;
  max-height: 58vh;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue-900);
  font-size: 1.8rem;
  cursor: pointer;
}

.gallery-nav.prev {
  left: 0.6rem;
}

.gallery-nav.next {
  right: 0.6rem;
}

.gallery-head h3 {
  margin: 0;
  color: var(--blue-900);
}

.gallery-head p {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.45rem;
}

.gallery-thumb {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--gold-500);
}

.site-footer {
  margin-top: 4.2rem;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(13, 61, 126, 0.1);
  background:
    linear-gradient(180deg, rgba(245, 249, 255, 0.94), rgba(238, 246, 255, 0.97));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.site-footer a,
.site-footer a:any-link,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active,
.site-footer a:focus {
  color: var(--ink-700) !important;
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.socials a {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(13, 62, 129, 0.15);
  color: var(--blue-900);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.only-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .hero-premium-inner,
  .hero-grid,
  .form-wrap,
  .grid-3,
  .footer-grid,
  .ref-grid,
  .category-item,
  .category-item.reverse,
  .references-fusion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 77px 0 auto 0;
    display: grid;
    padding: 1rem 1.2rem 1.2rem;
    border-bottom: 1px solid rgba(12, 66, 136, 0.12);
    background: rgba(255, 255, 255, 0.97);
    transform: translateY(-130%);
    transition: transform 0.27s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .contact-chip {
    display: none;
  }

  .only-mobile {
    display: inline;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100vw - 24px));
  }

  .site-header {
    backdrop-filter: blur(10px);
  }

  .hero,
  .section {
    padding: 3.2rem 0;
  }

  .hero-premium {
    min-height: 0;
    padding: 4.35rem 0 2.9rem;
  }

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

  .hero-copy .eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  .logo-img {
    width: 100%;
    height: 54px;
    object-fit: cover;
    object-position: center;
    clip-path: inset(14% 0 14% 0);
  }

  .logo {
    width: min(170px, 62vw);
    max-width: 170px;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11.5vw, 3.08rem);
    max-width: 10.5ch;
    line-height: 1.05;
    margin-inline: auto;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-inline: auto;
  }

  .hero-copy .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    max-width: 430px;
    margin-inline: auto;
  }

  .hero-copy .actions .btn {
    width: 100%;
  }

  .hero-float-card {
    border-radius: 18px;
    padding: 1rem;
  }

  .hero-premium-inner,
  .hero-grid,
  .grid-2,
  .grid-3,
  .stats,
  .form-wrap,
  .footer-grid,
  .ref-grid,
  .before-after-grid,
  .category-item,
  .category-item.reverse,
  .references-fusion {
    grid-template-columns: 1fr;
  }

  .category-item.reverse img,
  .category-item.reverse > div {
    order: initial;
  }

  .category-item {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding-bottom: 14px;
  }

  .category-item img {
    min-height: 230px;
    border-radius: 16px;
  }

  .category-item::after {
    display: none;
  }

  .category-item > div {
    position: relative;
    z-index: 2;
    margin: -74px 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(11, 66, 135, 0.18);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 24px rgba(7, 41, 94, 0.12);
  }

  .category-stack {
    gap: 1.2rem;
  }

  .process-flow {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    overflow-x: visible;
    gap: 0.6rem;
    padding: 0.35rem 0.05rem 0.45rem;
  }

  .process-flow::before {
    display: none;
  }

  .process-step:not(:last-child)::after {
    content: ">";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -0.48rem;
    transform: translateX(-50%) rotate(90deg);
  }

  .nav-wrap {
    min-height: 64px;
  }

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

  .trust-strip {
    margin-top: 0.7rem;
  }

  .floating-cta {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .process-step {
    min-height: 126px;
  }

  .process-top {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .office-map iframe {
    min-height: 230px;
  }

  .office-map-actions {
    grid-template-columns: 1fr;
  }
}
