*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --navy: #071523;
  --navy-mid: #0e2136;
  --navy-soft: #14283f;
  --electric: #00b8e6;
  --teal: #3bd3b4;
  --white: #f8fafc;
  --body: #cbd5e1;
  --grey: #94a3b8;
  --muted: #64748b;
  --border: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--electric);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 21, 35, 0.94);
  backdrop-filter: blur(14px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  min-width: 140px;
  text-decoration: none;
}

.nav-logo img {
  width: auto;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  display: block;
  border-radius: 8px;
  color: var(--grey);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0.72rem 0.9rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(0, 184, 230, 0.09);
  color: var(--electric);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.container {
  width: min(100% - 4rem, 1100px);
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 4rem, 780px);
  margin: 0 auto;
}

main {
  display: block;
}

section {
  padding: 82px 0;
}

.section-label {
  margin-bottom: 0.55rem;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}

h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
}

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

.lead {
  max-width: 650px;
  color: var(--body);
  font-size: 1.05rem;
}

.muted {
  color: var(--grey);
}

.section-action {
  margin-top: 2rem;
}

.section-action-lg {
  margin-top: 2.5rem;
}

.section-tight-top {
  padding-top: 0;
}

.note-offset {
  margin-top: 1.5rem;
}

.note-offset-lg {
  margin-top: 2rem;
}

.price-description {
  margin-top: 0.7rem;
}

.contact-blocks-spaced {
  margin-top: 1.5rem;
}

.advisory-spaced,
.form-noscript {
  margin-top: 1rem;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(640px, 80vh);
  align-items: flex-end;
  overflow: hidden;
  padding: 126px 0 54px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 21, 35, 0.92), rgba(7, 21, 35, 0.68) 46%, rgba(7, 21, 35, 0.18)),
    linear-gradient(to bottom, rgba(7, 21, 35, 0.08), var(--navy));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 4rem, 1100px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 span {
  color: var(--electric);
}

.hero-copy p {
  max-width: 570px;
  margin: 1.1rem 0 2rem;
  font-size: 1.12rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 2rem;
}

.hero-meta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 230, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 184, 230, 0.12), rgba(255, 255, 255, 0.035) 54%, rgba(7, 21, 35, 0.68)),
    rgba(7, 21, 35, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  padding: 1rem;
}

.hero-meta-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--electric), var(--teal));
  content: "";
}

.hero-meta-card dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-meta-card dd {
  margin-top: 0.55rem;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-meta-icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 184, 230, 0.26);
  border-radius: 999px;
  background: rgba(0, 184, 230, 0.12);
  color: var(--electric);
}

.hero-meta-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn,
.btn-ghost,
.card-btn,
.btn-submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0.9rem 1.35rem;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn,
.btn-submit,
.card-btn-primary {
  border: 1px solid var(--electric);
  background: var(--electric);
  color: var(--navy);
}

.btn:hover,
.btn:focus-visible,
.btn-submit:hover,
.btn-submit:focus-visible,
.card-btn-primary:hover,
.card-btn-primary:focus-visible {
  background: #35cdf3;
  transform: translateY(-2px);
  outline: none;
}

.btn-ghost,
.card-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.card-btn-ghost:hover,
.card-btn-ghost:focus-visible {
  border-color: rgba(0, 184, 230, 0.45);
  color: var(--electric);
  outline: none;
}

.page-header {
  padding: 132px 0 70px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
}

.page-header p {
  max-width: 620px;
  margin-top: 0.65rem;
  color: var(--grey);
  font-size: 1.05rem;
}

.split-grid,
.about-grid,
.svc-main,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.about-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.svc-main {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.what-grid {
  display: grid;
  gap: 2rem;
}

.what-media {
  max-width: 860px;
}

.what-media img {
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.what-copy {
  max-width: 720px;
}

.what-copy .muted {
  margin-top: 1rem;
}

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

.step {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.45rem;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.step:hover {
  border-color: rgba(0, 184, 230, 0.28);
  background: var(--panel-strong);
  transform: translateY(-3px);
}

.step p,
.card p,
.reg-card p,
.service-card p,
.inc-card p,
.blog-card p {
  color: var(--grey);
  font-size: 0.9rem;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame::before {
  position: absolute;
  inset: -10px -10px 10px 10px;
  z-index: -1;
  border: 1px solid rgba(0, 184, 230, 0.18);
  border-radius: 8px;
  content: "";
}

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
}

.cards-grid,
.regs-grid,
.services-grid,
.included-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

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

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

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

.card,
.reg-card,
.service-card,
.inc-card,
.blog-card,
.contact-block,
.note-box,
.advisory {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.card,
.reg-card,
.service-card,
.inc-card {
  padding: 1.45rem;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.card:hover,
.reg-card:hover,
.service-card:hover,
.inc-card:hover,
.blog-card:hover {
  border-color: rgba(0, 184, 230, 0.28);
  background: var(--panel-strong);
  transform: translateY(-3px);
}

.reg-year,
.card-kicker,
.blog-tag,
.price-kicker,
.cb-label,
.ins-title {
  margin-bottom: 0.45rem;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 184, 230, 0.24);
  border-radius: 8px;
  background: rgba(0, 184, 230, 0.08);
  color: var(--electric);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-mid), #0a1c2f);
  padding: 3rem;
}

.contact-details,
.contact-blocks {
  display: grid;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--body);
  font-size: 0.95rem;
}

.contact-item a,
.inline-link {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover,
.inline-link:hover,
.contact-item a:focus-visible,
.inline-link:focus-visible {
  color: var(--electric);
  outline: none;
}

.contact-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--electric);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.45rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: var(--body);
  font-size: 0.92rem;
}

.check-list li::before {
  content: "✓";
  color: var(--electric);
  font-weight: 800;
}

.note-box,
.advisory {
  padding: 1.3rem 1.45rem;
}

.note-box {
  border-color: rgba(0, 184, 230, 0.2);
  background: rgba(0, 184, 230, 0.055);
}

.note-box strong,
.advisory strong {
  color: var(--electric);
}

.about-img-wrap img,
.svc-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qual-badge {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 1.45rem 0 1.8rem;
  border: 1px solid rgba(0, 184, 230, 0.22);
  border-radius: 8px;
  background: rgba(0, 184, 230, 0.075);
  padding: 0.9rem 1rem;
}

.qual-badge .card-icon {
  margin: 0;
}

.ql-text {
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.ql-text span {
  display: block;
  color: var(--grey);
  font-weight: 500;
}

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

.ins-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.1rem;
}

.pricing-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  border: 1px solid rgba(0, 184, 230, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.11), rgba(255, 255, 255, 0.025));
  padding: 3rem;
}

.price-value {
  color: var(--white);
  font-family: "Syne", Arial, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.price-subtitle {
  margin-top: 0.6rem;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-weight: 800;
}

.price-addon {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.7rem 2rem;
}

.price-addon-value {
  flex: 0 0 auto;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price-addon-rule {
  width: 1px;
  height: 54px;
  background: var(--border);
}

.cta-band {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 184, 230, 0.06), transparent);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-contact {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 132px 0 72px;
}

.hero-contact .hero-bg img {
  object-position: center 60%;
  filter: brightness(0.62) saturate(0.82);
  opacity: 1;
}

.hero-contact .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(7, 21, 35, 0.9), rgba(7, 21, 35, 0.54)),
    linear-gradient(to bottom, rgba(7, 21, 35, 0.2), var(--navy));
}

.hero-contact .hero-content {
  width: min(100% - 4rem, 1100px);
}

.contact-block {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.contact-block:hover {
  border-color: rgba(0, 184, 230, 0.28);
  background: var(--panel-strong);
}

.cb-icon {
  margin-top: 0.1rem;
}

.cb-value,
.cb-value a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.cb-value a:hover,
.cb-value a:focus-visible {
  color: var(--electric);
  outline: none;
}

.cb-note {
  margin-top: 0.25rem;
  color: var(--grey);
  font-size: 0.85rem;
}

.image-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 1rem;
}

.image-panel-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel-main img {
  width: 100%;
  filter: brightness(0.86) saturate(0.88);
}

.image-panel-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, transparent 48%, rgba(7, 21, 35, 0.76));
}

.image-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.2rem;
}

.image-caption strong {
  display: block;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 1.05rem;
}

.image-caption p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.image-panel-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.img-thumb {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.76) saturate(0.86);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.img-thumb:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.04);
}

.contact-form {
  margin-top: 2rem;
}

.contact-form h3 {
  margin-bottom: 1rem;
}

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

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--electric);
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font: inherit;
  outline: none;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0, 184, 230, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  cursor: pointer;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 0.9rem;
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(59, 211, 180, 0.28);
  background: rgba(59, 211, 180, 0.08);
  color: var(--teal);
}

.form-status.error {
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
  color: #fca5a5;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  margin: 2rem 0 3.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.featured-img {
  min-height: 340px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem;
}

.featured-label {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tag-pill,
.blog-tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(0, 184, 230, 0.18);
  border-radius: 8px;
  background: rgba(0, 184, 230, 0.08);
  padding: 0.25rem 0.55rem;
}

.featured-label em {
  color: var(--grey);
  font-style: normal;
  font-size: 0.86rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.84);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem;
}

.blog-card h2 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-date {
  color: var(--muted);
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--grey);
  font-size: 0.86rem;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--grey);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--electric);
  outline: none;
}

@media (max-width: 980px) {
  .site-nav {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-height) + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.4rem;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7, 21, 35, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    visibility: hidden;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    padding: 1rem;
  }

  .split-grid,
  .about-grid,
  .svc-main,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-grid,
  .regs-grid,
  .cards-grid,
  .included-grid,
  .blog-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .container-narrow,
  .hero-content,
  .hero-contact .hero-content {
    width: min(100% - 2rem, 1100px);
  }

  .site-nav {
    height: 66px;
  }

  :root {
    --nav-height: 66px;
  }

  .nav-logo img {
    height: 36px;
  }

  .hero {
    min-height: 590px;
    padding: 106px 0 44px;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(7, 21, 35, 0.9), rgba(7, 21, 35, 0.72)),
      linear-gradient(to bottom, rgba(7, 21, 35, 0.08), var(--navy));
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 58px 0;
  }

  .page-header {
    padding: 110px 0 50px;
  }

  .hero-actions,
  .button-row,
  .cta-inner {
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-ghost,
  .button-row .btn,
  .button-row .btn-ghost,
  .cta-inner .btn,
  .cta-inner .btn-ghost {
    width: 100%;
  }

  .hero-meta,
  .services-grid,
  .regs-grid,
  .cards-grid,
  .included-grid,
  .blog-grid,
  .steps,
  .ins-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-strip,
  .pricing-block {
    align-items: stretch;
    padding: 1.4rem;
  }

  .price-value {
    font-size: 4rem;
  }

  .price-addon {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
  }

  .price-addon-rule {
    width: 100%;
    height: 1px;
  }

  .hero-contact {
    min-height: 340px;
    padding: 110px 0 56px;
  }

  .image-panel-secondary {
    display: none;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-img {
    min-height: 220px;
  }

  .featured-body {
    padding: 1.5rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }

  .hero-copy p,
  .lead,
  .page-header p {
    font-size: 1rem;
  }
}

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