:root {
  --bg: #04101f;
  --bg-soft: #081a31;
  --panel: rgba(11, 31, 56, 0.82);
  --panel-strong: #0b203b;
  --text: #eef5ff;
  --muted: #a9b8ca;
  --blue: #168dff;
  --blue-light: #61c5ff;
  --border: rgba(104, 179, 255, 0.2);
  --max-width: 1180px;
  --radius: 20px;
}

/* Reset and base styles */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(23, 130, 255, 0.16),
      transparent 28%
    ),
    linear-gradient(180deg, #020914 0%, var(--bg) 100%);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;

  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 14px max(24px, calc((100vw - var(--max-width)) / 2));

  border-bottom: 1px solid var(--border);

  background: rgba(3, 12, 25, 0.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__image,
.logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
}

.site-nav .nav-cta {
  padding: 10px 16px;

  border: 1px solid rgba(22, 141, 255, 0.5);
  border-radius: 999px;

  color: white;
}

.site-nav .nav-cta:hover {
  border-color: var(--blue);
  background: rgba(22, 141, 255, 0.1);
}

/* Mobile menu button */

.menu-button {
  display: none;

  width: 44px;
  height: 44px;
  padding: 0;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--panel);
  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 20px;
  height: 2px;

  margin: 4px auto;

  background: white;
}

/* Shared layout */

main {
  overflow: hidden;
}

.hero,
.page-hero,
.section,
.cta {
  width: min(var(--max-width), calc(100% - 48px));

  margin-inline: auto;
}

/* Typography */

.eyebrow {
  margin: 0 0 14px;

  color: var(--blue-light);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;

  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;

  color: white;

  font-size: 20px;
  line-height: 1.3;
}

/* Homepage hero */

.hero {
  min-height: 85vh;

  display: flex;
  align-items: center;

  padding: 100px 0 80px;

  text-align: left;
}

.hero__content {
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);

  max-width: 900px;
}

.hero__lead {
  max-width: 720px;
  margin: 0;
}

.hero__actions {
  justify-content: flex-start;
}
/* Buttons */

.button {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 21px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 800;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button--primary {
  color: white;

  background: linear-gradient(135deg, #168dff, #0760d4);

  box-shadow: 0 12px 32px rgba(14, 111, 232, 0.28);
}

.button--primary:hover {
  box-shadow: 0 16px 40px rgba(14, 111, 232, 0.38);
}

.button--secondary {
  border-color: var(--border);

  color: white;

  background: rgba(255, 255, 255, 0.03);
}

.button--secondary:hover {
  border-color: rgba(97, 197, 255, 0.55);

  background: rgba(22, 141, 255, 0.08);
}

/* Check lists */

.check-list,
.service-block ul,
.price-card ul {
  margin: 0;
  padding-left: 0;

  list-style: none;
}

.check-list li,
.service-block li,
.price-card li {
  position: relative;

  margin-bottom: 11px;
  padding-left: 26px;

  color: var(--muted);
}

.check-list li::before,
.service-block li::before,
.price-card li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--blue-light);

  font-weight: 900;
}

/* Belmont Approach */

.belmont-approach {
  position: relative;

  width: 100%;

  padding: 105px 24px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  text-align: center;

  background:
    radial-gradient(circle at top, rgba(22, 141, 255, 0.1), transparent 55%),
    var(--bg);
}

.belmont-approach .container {
  width: min(var(--max-width), 100%);

  margin: 0 auto;
}

.belmont-approach .eyebrow {
  margin-bottom: 20px;
}

.belmont-approach h2 {
  margin: 0;

  color: white;

  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.belmont-approach h2 span {
  margin: 0 12px;

  color: var(--blue-light);
}

.approach-description {
  max-width: 760px;

  margin: 35px auto 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.8;
}

/* Inner page hero */

.page-hero {
  padding: 100px 0 65px;
}

.page-hero--small {
  padding-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
}

.page-hero > p:last-child,
.page-subtitle {
  max-width: 760px;

  font-size: 19px;
  line-height: 1.75;
}

/* Services */

.service-list {
  display: grid;
  gap: 22px;
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;

  padding: 40px;

  border: 1px solid var(--border);
  border-radius: 24px;

  background: var(--panel);
}

.service-number {
  color: var(--blue-light);

  font-weight: 900;
  letter-spacing: 0.15em;
}

.note {
  padding: 14px 16px;

  border-left: 3px solid var(--blue);

  background: rgba(22, 141, 255, 0.08);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;

  padding: 28px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--panel);
}

.price-card--featured {
  border-color: rgba(22, 141, 255, 0.55);

  box-shadow: 0 20px 50px rgba(4, 70, 145, 0.18);
}

.price-card h2 {
  font-size: 34px;
}

.price-card .button {
  margin-top: auto;
}

.section--narrow {
  max-width: 800px;
}

.notice {
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: rgba(8, 28, 51, 0.75);
}

/* Values */

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

.value-grid article {
  padding: 26px;

  border-top: 1px solid var(--border);
}

.value-grid span {
  color: var(--blue-light);

  font-weight: 900;
}

/* Website process list */

.process-list {
  margin: 0;
  padding: 0;

  list-style: none;

  counter-reset: process;
}

.process-list li {
  position: relative;

  margin-bottom: 24px;
  padding: 0 0 24px 64px;

  border-bottom: 1px solid var(--border);

  counter-increment: process;
}

.process-list li::before {
  content: counter(process);

  position: absolute;
  top: 0;
  left: 0;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(22, 141, 255, 0.45);
  border-radius: 50%;

  color: var(--blue-light);

  background: rgba(22, 141, 255, 0.08);

  font-weight: 900;
}

.process-list strong {
  display: block;

  margin-bottom: 6px;

  color: white;

  font-size: 20px;
}

.process-list p {
  margin: 0;
}

/* About services */

.about-services {
  display: grid;
  gap: 24px;
}

.about-services__item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.about-services__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-services__item h3 {
  margin-bottom: 8px;
}

.about-services__item p {
  margin-bottom: 0;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: start;
}

.contact-form,
.contact-card {
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--panel);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;

  color: white;

  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--border);
  border-radius: 12px;

  color: white;

  background: rgba(2, 11, 23, 0.75);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(22, 141, 255, 0.35);

  border-color: var(--blue);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;

  margin: 0;

  color: var(--blue-light);
}

/* Legal pages */

.legal-copy {
  max-width: 850px;
}

.legal-copy h2 {
  margin-top: 34px;

  font-size: 28px;
}

/* Call to action */

.cta {
  max-width: 900px;

  margin-top: 80px;
  margin-bottom: 90px;

  padding: 60px 40px;

  border: 1px solid var(--border);
  border-radius: 24px;

  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(18, 68, 118, 0.55),
    rgba(7, 27, 50, 0.9)
  );
}

.cta > div,
.cta-content {
  max-width: 700px;

  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta .button {
  margin-top: 25px;
}

/* Footer */

/* Footer */

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;

  padding: 70px 0 35px;
}

.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer h4 {
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-brand p {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.copyright {
  grid-column: 1 / -1;

  margin-top: 36px;
  padding-top: 24px;

  border-top: 1px solid var(--border);

  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1120px);
    gap: 28px;
    padding: 55px 0 30px;
  }

  .footer-brand p {
    max-width: none;
  }
}

/* Tablet */

@media (max-width: 980px) {
  .card-grid--4,
  .pricing-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section--split,
  .service-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 24px;
    left: 24px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #061426;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-button {
    display: block;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .cta,
  .site-footer {
    width: min(100% - 30px, var(--max-width));
  }

  .site-header {
    width: 100%;

    padding-inline: 15px;
  }

  .logo__image,
  .logo img {
    width: 120px;
  }

  .hero {
    min-height: auto;

    padding: 75px 0 70px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .card-grid--4,
  .card-grid--3,
  .pricing-grid,
  .value-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 65px 0;
  }

  .service-block {
    gap: 25px;

    padding: 26px;
  }

  .belmont-approach {
    padding: 75px 20px;
  }

  .belmont-approach h2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .belmont-approach h2 span {
    display: none;
  }

  .approach-description {
    font-size: 16px;
  }

  .cta {
    padding: 42px 24px;
  }

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

  .copyright {
    grid-column: auto;
  }
}

/* General sections */
.section {
  padding: 90px 0;
  scroll-margin-top: 100px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

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

.card {
  min-height: 240px;
  padding: 26px;
  text-align: left;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: linear-gradient(
    145deg,
    rgba(13, 35, 63, 0.88),
    rgba(6, 19, 36, 0.88)
  );
}
/* Contact sections */
.contact-hero {
  padding-bottom: 45px;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
}

.contact-intro {
  padding-top: 10px;
}

.contact-intro h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.contact-detail__label {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.contact-detail p {
  margin: 0;
}

.contact-form {
  padding: 34px;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-intro {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .contact-form {
    padding: 24px;
  }

  .contact-form .button {
    width: 100%;
  }
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.checkbox-field a {
  color: var(--blue-light);
  text-decoration: none;
}

.checkbox-field a:hover {
  text-decoration: underline;
}

/* Premium motion and interaction */

body {
  overflow-x: hidden;
}

/* Premium page entrance */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--bg);
  animation: pageCurtain 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageCurtain {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(5px);

  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Glass header on scroll */

.site-header {
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(3, 13, 27, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Premium card treatment */

.card,
.price-card,
.contact-card,
.about-summary {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;

  transition:
    transform 0.25s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card::before,
.price-card::before,
.contact-card::before,
.about-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;

  background: radial-gradient(
    420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(73, 171, 255, 0.14),
    transparent 42%
  );

  transition: opacity 0.3s ease;
}

.card:hover::before,
.price-card:hover::before,
.contact-card:hover::before,
.about-summary:hover::before {
  opacity: 1;
}

.card:hover,
.price-card:hover,
.contact-card:hover,
.about-summary:hover {
  border-color: rgba(97, 197, 255, 0.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(97, 197, 255, 0.05);
}

/* Buttons */

.button {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

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

.button:hover::after {
  left: 150%;
}

.button--primary:hover {
  box-shadow:
    0 16px 40px rgba(14, 111, 232, 0.38),
    0 0 25px rgba(22, 141, 255, 0.16);
}

/* Navigation */

.site-nav a {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;

  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a.active:not(.button)::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero depth */

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;

  background: rgba(22, 141, 255, 0.1);
  filter: blur(110px);

  animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.5;
  }

  to {
    transform: translate3d(-45px, 35px, 0) scale(1.12);
    opacity: 0.9;
  }
}

/* Cursor glow */

.cursor-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;

  width: 420px;
  height: 420px;
  border-radius: 50%;

  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(22, 141, 255, 0.08),
    transparent 66%
  );

  filter: blur(12px);
  transition: opacity 0.3s ease;
}

/* Form polish */

input,
select,
textarea {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(97, 197, 255, 0.72);
  background: rgba(4, 18, 36, 0.95);
  box-shadow:
    0 0 0 4px rgba(22, 141, 255, 0.11),
    0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Premium text selection */

::selection {
  color: white;
  background: rgba(22, 141, 255, 0.62);
}

/* Hide pointer-only effects on touch screens */

@media (hover: none) {
  .cursor-glow {
    display: none;
  }

  .card,
  .price-card,
  .contact-card,
  .about-summary {
    transform: none !important;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* Responsive layout fixes */

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

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

.card,
.price-card,
.service-block,
.contact-form,
.contact-card,
.notice {
  min-width: 0;
}

.card h2,
.card h3,
.price-card h2,
.price-card h3,
.service-block h2,
.service-block h3 {
  overflow-wrap: anywhere;
}

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

@media (max-width: 680px) {
  h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .page-hero {
    padding: 72px 0 45px;
  }

  .page-hero > p:last-child,
  .page-subtitle {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section--split,
  .card-grid--3,
  .card-grid--4,
  .pricing-grid,
  .value-grid,
  .contact-layout,
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .section--split {
    gap: 32px;
  }

  .card-grid,
  .pricing-grid {
    gap: 16px;
  }

  .card {
    min-height: 0;
    padding: 22px;
  }

  .price-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .price-card h2 {
    font-size: 30px;
  }

  .price-card .button {
    width: 100%;
  }

  .service-block {
    padding: 22px;
    gap: 20px;
  }

  .contact-form,
  .contact-card,
  .notice {
    padding: 22px;
  }

  .process-list li {
    padding-left: 54px;
  }

  .process-list li::before {
    width: 38px;
    height: 38px;
  }

  .cta {
    padding: 38px 22px;
  }

  .cta .button {
    width: 100%;
  }

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

@media (max-width: 390px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .cta,
  .site-footer {
    width: min(100% - 22px, var(--max-width));
  }

  .site-header {
    width: 100%;
  }

  .card,
  .price-card,
  .service-block,
  .contact-form,
  .contact-card,
  .notice {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Complete responsive navigation and layout */

/* Prevent horizontal overflow */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
article,
div,
header,
nav,
footer {
  min-width: 0;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Main navigation */

.site-header {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.site-nav a,
.site-nav .nav-cta {
  position: relative;

  padding: 8px 0;

  border: 0;
  border-radius: 0;

  color: var(--muted);
  background: transparent;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav .nav-cta:hover {
  border: 0;
  color: white;
  background: transparent;
}

.site-nav a::after,
.site-nav .nav-cta::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;

  width: 100%;
  height: 1px;

  background: var(--blue-light);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.site-nav .nav-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Shared responsive grids */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

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

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

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

.card,
.price-card,
.service-block,
.contact-form,
.contact-card,
.notice {
  min-width: 0;
}

.card h2,
.card h3,
.price-card h2,
.price-card h3,
.service-block h2,
.service-block h3,
.hero h1,
.page-hero h1 {
  overflow-wrap: break-word;
}

/* Laptop and tablet */

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a,
  .site-nav .nav-cta {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .card-grid--3,
  .card-grid--4,
  .pricing-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--split,
  .service-block,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    position: sticky;
    top: 0;

    min-height: 72px;
    padding: 11px 18px;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    width: 100%;
    padding: 0;

    border: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0;

    background: rgba(3, 12, 25, 0.98);

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
    padding: 16px 20px;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;

    color: var(--text);
    background: transparent;

    font-size: 15px;
    text-align: left;
    white-space: normal;
  }

  .site-nav a:last-child,
  .site-nav .nav-cta:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a.active,
  .site-nav .nav-cta:hover {
    color: var(--blue-light);
    background: rgba(22, 141, 255, 0.07);
  }

  .site-nav a::after,
  .site-nav .nav-cta::after {
    display: none;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .cta,
  .site-footer {
    width: min(100% - 30px, var(--max-width));
  }

  .site-header {
    width: 100%;
    min-height: 68px;
    padding: 9px 15px;
  }

  .logo__image,
  .logo img {
    width: 116px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(37px, 11vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.12;
  }

  h3 {
    font-size: 19px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .page-hero {
    padding: 66px 0 42px;
  }

  .hero__lead,
  .page-hero > p:last-child,
  .page-subtitle {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section--split,
  .card-grid--3,
  .card-grid--4,
  .pricing-grid,
  .value-grid,
  .contact-layout,
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .section--split {
    gap: 30px;
  }

  .card-grid,
  .pricing-grid,
  .service-list {
    gap: 16px;
  }

  .card {
    min-height: 0;
    padding: 22px;
  }

  .price-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .price-card h2 {
    font-size: 30px;
  }

  .price-card .button {
    width: 100%;
  }

  .service-block {
    gap: 22px;
    padding: 22px;
  }

  .service-block h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .contact-form,
  .contact-card,
  .notice {
    padding: 22px;
  }

  .contact-form .button {
    width: 100%;
  }

  .process-list li {
    padding-left: 54px;
  }

  .process-list li::before {
    width: 38px;
    height: 38px;
  }

  .belmont-approach {
    padding: 66px 18px;
  }

  .belmont-approach h2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .belmont-approach h2 span {
    display: none;
  }

  .approach-description {
    font-size: 16px;
  }

  .cta {
    margin-top: 54px;
    margin-bottom: 64px;
    padding: 38px 22px;
  }

  .cta .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

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

  .copyright {
    grid-column: auto;
  }

  .cursor-glow {
    display: none;
  }

  .card,
  .price-card,
  .contact-card,
  .about-summary {
    transform: none !important;
  }
}

/* Small mobile */

@media (max-width: 390px) {
  .hero,
  .page-hero,
  .section,
  .cta,
  .site-footer {
    width: min(100% - 22px, var(--max-width));
  }

  .site-header {
    width: 100%;
  }

  .card,
  .price-card,
  .service-block,
  .contact-form,
  .contact-card,
  .notice {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }
}

.pricing-note {
  max-width: 860px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

/* Announcement bar */

.announcement-bar {
  width: 100%;
  padding: 9px 20px;

  border-bottom: 1px solid rgba(97, 197, 255, 0.22);

  background: linear-gradient(
    90deg,
    rgba(8, 41, 75, 0.98),
    rgba(12, 91, 166, 0.98),
    rgba(8, 41, 75, 0.98)
  );

  text-align: center;
}

.announcement-bar p {
  margin: 0;

  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;
}
/* Keep the sticky header beneath the banner */

.site-header {
  top: 0;
}

@media (max-width: 680px) {
  .announcement-bar {
    padding: 8px 14px;
  }

  .announcement-bar p {
    font-size: 11px;
    line-height: 1.45;
  }
}
/* Two-column website packages */

.pricing-grid--two {
  width: min(900px, 100%);
  margin-inline: auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-grid--two .price-card {
  width: 100%;
  min-height: 100%;
}

.pricing-grid--two .price-card .button {
  width: fit-content;
  margin-top: auto;
}

/* Pricing supporting text */

.price-card__tagline {
  margin-bottom: 14px;

  color: white;
  font-weight: 700;
}

.price-card__support {
  margin-top: 18px;
  padding-top: 18px;

  border-top: 1px solid var(--border);

  color: var(--blue-light);
  font-size: 14px;
}

.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;

  padding: 6px 10px;

  border: 1px solid rgba(97, 197, 255, 0.35);
  border-radius: 999px;

  color: var(--blue-light);
  background: rgba(22, 141, 255, 0.1);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;

  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

/* Tablet and mobile */

@media (max-width: 760px) {
  .pricing-grid--two {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .pricing-grid--two .price-card .button {
    width: 100%;
  }

  .price-card__badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 16px;
  }

  .pricing-note {
    text-align: left;
  }
}
/* Netlify form honeypot */

.hidden-field {
  position: absolute;
  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}
/* Contact form status */

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;

  border: 1px solid var(--border);
  border-radius: 12px;

  font-size: 14px;
  line-height: 1.6;
}

.form-status.is-success {
  display: block;

  border-color: rgba(97, 197, 255, 0.4);

  color: var(--blue-light);
  background: rgba(22, 141, 255, 0.08);
}

.form-status.is-error {
  display: block;

  border-color: rgba(255, 120, 120, 0.35);

  color: #ffb3b3;
  background: rgba(255, 80, 80, 0.08);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}
