@charset "utf-8";
/* CSS Document */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1E2A4A;
  --deep: #111827;
  --deep-2: #0E1524;
  --red: #CC2229;
  --blue: #4472C4;
  --muted: #8FA8C8;
  --white: #F4F6FA;
  --line: rgba(143, 168, 200, 0.08);
  --line-strong: rgba(143, 168, 200, 0.14);

  --glow-red-x: 0px;
  --glow-red-y: 0px;
  --glow-blue-x: 0px;
  --glow-blue-y: 0px;

  --container: 1280px;
  --header-height: 86px;

  --fs-body: clamp(0.95rem, 0.2vw + 0.9rem, 1rem);
  --fs-small: clamp(0.68rem, 0.15vw + 0.64rem, 0.78rem);
  --fs-nav: clamp(0.64rem, 0.12vw + 0.62rem, 0.72rem);
  --fs-h1: clamp(2.7rem, 5vw + 1rem, 6.6rem);
  --fs-h2: clamp(2rem, 2.2vw + 1.1rem, 4.4rem);
  --fs-h3: clamp(1.05rem, 0.4vw + 0.95rem, 1.25rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: var(--fs-body);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

.top-stripe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B1A1A, var(--red) 40%, var(--blue));
  z-index: 500;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(17, 24, 39, 0.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  background: rgba(10, 15, 24, 0.9);
  border-bottom: 1px solid var(--line-strong);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: clamp(48px, 3vw, 64px);
  display: block;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 0.7vw + 1.1rem, 1.7rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-accent-red {
  color: var(--red);
}

.brand-accent-blue {
  color: var(--muted);
}

.brand-tag {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(204, 34, 41, 0.4);
  color: rgba(255, 255, 255, 1);
  font-size: clamp(0.4rem, 0.25vw + 0.35rem, 0.48rem);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.desktop-nav a {
  color: rgba(254, 254, 254, 1);
  font-size: var(--fs-nav);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .3s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 34, 41, 0.5);
  padding: 0.78rem 1.2rem;
  color: var(--white);
  font-size: var(--fs-nav);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(143, 168, 200, 0.15);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--white);
  display: block;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 2.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #111827 0%, #111827 52%, #1E2A4A 52%, #1E2A4A 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--red) 25%, var(--red) 75%, transparent);
  transform: rotate(-8deg) translateX(-50%);
  transform-origin: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0.52;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero-glow-red {
  width: min(36rem, 55vw);
  aspect-ratio: 1;
  left: -8rem;
  top: 18%;
  background: radial-gradient(circle, rgba(204, 34, 41, 0.14) 0%, transparent 66%);
  animation: driftRed 9s ease-in-out infinite;
}

.hero-glow-blue {
  width: min(42rem, 62vw);
  aspect-ratio: 1;
  right: -10rem;
  top: -10%;
  background: radial-gradient(circle, rgba(68, 114, 196, 0.11) 0%, transparent 66%);
  animation: driftBlue 11s ease-in-out infinite reverse;
}

@keyframes driftRed {
  0%, 100% { transform: translate(var(--glow-red-x), var(--glow-red-y)) translateY(0); }
  50% { transform: translate(var(--glow-red-x), var(--glow-red-y)) translateY(-28px); }
}

@keyframes driftBlue {
  0%, 100% { transform: translate(var(--glow-blue-x), var(--glow-blue-y)) translateY(0); }
  50% { transform: translate(var(--glow-blue-x), var(--glow-blue-y)) translateY(-28px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height) - 2.5rem);
  padding-block: clamp(2rem, 4vw, 4rem);
}

.hero-copy {
  max-width: 44rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
  color: var(--red);
  font-size: var(--fs-small);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-kicker-line {
  width: 40px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: -2px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: var(--red);
  font-style: italic;
}

.hero-title-muted {
  color: var(--muted);
  font-weight: 300;
}

.hero-body {
  max-width: 31rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(204, 34, 41, 0.4);
  color: rgba(143, 168, 200, 0.78);
  line-height: 1.9;
  margin-bottom: 2.25rem;
}

.hero-body strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  white-space: nowrap;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-size: var(--fs-nav);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.btn-secondary {
  color: var(--muted);
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-secondary:hover {
  color: var(--white);
}

.hero-panel {
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;

  color: rgba(255, 255, 255, 1);
  font-size: 0.56rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.panel-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(143, 168, 200, 0.08);
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(143, 168, 200, 0.07);
  transition: padding-left .3s ease;
}

.service-row:hover {
  padding-left: 10px;
}

.service-index {
  color: rgba(255, 0, 10, 1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-name {
  color: rgba(244, 246, 250, 0.7);
  font-size: 0.96rem;
  font-weight: 600;
}

.service-tag {
  color: rgba(143, 168, 200, 0.26);
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-arrow {
  color: transparent;
  transition: transform .3s ease, color .3s ease;
}

.service-row:hover .service-index {
  color: var(--red);
}

.service-row:hover .service-name {
  color: var(--white);
}

.service-row:hover .service-tag {
  color: var(--muted);
}

.service-row:hover .service-arrow {
  color: var(--red);
  transform: translateX(4px);
}

.stats-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005));
}

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

.stat-card {
  position: relative;
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width .4s ease;
}

.stat-card:hover::before {
  width: 60%;
}

.stat-value {
  color: var(--red);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 1.5vw + 1.4rem, 3rem);
  line-height: 1;
  font-weight: 700;
}

.stat-label {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.quote-band {
  background: var(--red);
}

.quote-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.5rem;
}

.quote-mark {
  color: rgba(255, 255, 255, 0.24);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 4vw, 5rem);
  line-height: 0.7;
  flex-shrink: 0;
}

.quote-text {
  color: rgba(255, 255, 255, 0.96);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 0.7vw + 1rem, 1.4rem);
  font-style: italic;
  line-height: 1.45;
}

.quote-text strong {
  color: var(--white);
  font-style: normal;
}

.quote-button {
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.25rem;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
  white-space: nowrap;
}

.quote-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.content-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section-alt {
  background: linear-gradient(180deg, rgba(68, 114, 196, 0.05), rgba(255, 255, 255, 0));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h2);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -1px;
  max-width: 18ch;
}

.problem-list,
.process-grid {
  display: grid;
  gap: 1.35rem;
}

.problem-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.problem-no,
.process-no {
  color: rgba(255, 0, 10, 1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.problem-item h3,
.process-card h3 {
  color: var(--white);
  font-size: var(--fs-h3);
  margin-bottom: 0.45rem;
}

.problem-item p,
.process-card p,
.contact-copy {
  color: rgba(143, 168, 200, 0.75);
  line-height: 1.85;
}

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

.process-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  padding: 1.5rem;
  transition: transform .3s ease, border-color .3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 34, 41, 0.18);
}

.contact-section {
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 1.9rem 2.75rem;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand {
  color: rgba(244, 246, 250, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-note {
  color: rgba(143, 168, 200, 0.46);
  font-size: 0.7rem;
  letter-spacing: 0.4px;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 2vw, 2.2rem);
  flex-wrap: wrap;
}

.footer-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding-bottom: 0.65rem;
  min-width: 118px;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(143, 168, 200, 0.12);
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transition: width .35s ease;
  z-index: 1;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-link-label {
  color: rgba(143, 168, 200, 0.54);
  font-size: 0.5rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-link-name {
  color: rgba(244, 246, 250, 0.92);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 0.8vw + 1rem, 1.55rem);
  line-height: 1;
  font-weight: 600;
  transition: color .3s ease, transform .3s ease;
}

.footer-link:hover .footer-link-name {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-link:hover .footer-link-label {
  color: rgba(143, 168, 200, 0.76);
}

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

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

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    padding-top: 0;
  }

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

  .hero-line {
    opacity: 0.18;
    left: auto;
    right: 12%;
    transform: rotate(0deg);
  }

  .quote-inner {
    flex-wrap: wrap;
  }

  .quote-button {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .mobile-nav {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--line);
    background: rgba(10, 15, 24, 0.95);
  }

  .mobile-nav.open {
    display: grid;
    gap: 0.85rem;
  }

  .mobile-nav a {
    color: rgba(244, 246, 250, 0.86);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.55rem 0;
  }

  .mobile-nav-cta {
    margin-top: 0.25rem;
    border: 1px solid rgba(204, 34, 41, 0.45);
    padding: 0.9rem 1rem;
    text-align: center;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 800;
  }

  .hero::before {
    background: linear-gradient(180deg, #111827 0%, #111827 62%, #1E2A4A 100%);
  }

  .hero-line {
    display: none;
  }

  .hero-grid {
    opacity: 0.1;
    background-size: 56px 56px;
  }

  .hero-glow-red {
    left: -10rem;
    top: 8%;
  }

  .hero-glow-blue {
    right: -12rem;
    top: -6%;
  }

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

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-right {
    width: 100%;
    gap: 1.2rem;
  }

  .footer-link {
    width: calc(50% - 0.6rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .brand-logo {
    width: 48px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-tag {
    letter-spacing: 3px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.3rem);
  }

  .hero-inner {
    gap: 1.5rem;
    padding-block: 1.2rem 2.25rem;
  }

  .section-kicker {
    margin-bottom: 1.2rem;
    gap: 0.65rem;
    letter-spacing: 3px;
  }

  .section-kicker-line {
    width: 28px;
  }

  .hero-title {
    line-height: 0.98;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
  }

  .hero-body {
    max-width: none;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-left: 0.9rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .service-row {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1rem 0;
  }

  .service-tag,
  .service-arrow {
    display: none;
  }

  .quote-inner {
    padding-block: 1.2rem;
    gap: 0.9rem;
  }

  .quote-mark {
    display: none;
  }

  .content-section {
    padding-block: 3.4rem;
  }

  .problem-item {
    grid-template-columns: 36px 1fr;
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .footer-right {
    gap: 1rem;
  }

  .footer-link {
    width: 100%;
  }
}
/* ---------------------------------- */
/* PAGE HERO + INNER PAGE COMPONENTS  */
/* ---------------------------------- */

.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--red);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 2.5rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #111827 0%, #111827 52%, #1E2A4A 52%, #1E2A4A 100%);
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(72svh - var(--header-height) - 2.5rem);
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 4vw, 4rem);
}

.page-hero-copy {
  max-width: 52rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw + 1rem, 5.4rem);
  line-height: 0.95;
  letter-spacing: -1.5px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.page-intro {
  max-width: 42rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(204, 34, 41, 0.4);
  color: rgba(143, 168, 200, 0.78);
  line-height: 1.9;
}

.feature-stack {
  display: grid;
  gap: 1.4rem;
}

.feature-block {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.feature-no {
  color: rgba(255, 0, 10, 1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-content h2 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 0.5vw + 1.2rem, 2rem);
  line-height: 1.05;
  margin-bottom: 0.55rem;
}

.feature-content p {
  color: rgba(143, 168, 200, 0.78);
  line-height: 1.9;
}

@media (max-width: 820px) {
  .page-hero::before {
    background: linear-gradient(180deg, #111827 0%, #111827 62%, #1E2A4A 100%);
  }

  .page-hero .hero-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.3rem);
  }

  .page-hero-inner {
    min-height: auto;
    padding-block: 1.2rem 2.25rem;
  }

  .page-title {
    line-height: 0.98;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
  }

  .page-intro {
    max-width: none;
    line-height: 1.75;
    padding-left: 0.9rem;
  }

  .feature-block {
    grid-template-columns: 40px 1fr;
    gap: 0.9rem;
  }
	.footer-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
}
	html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

.hero,
.page-hero,
.hero-inner,
.page-hero-inner,
.hero-copy,
.page-hero-copy,
.hero-panel,
.split-section,
.split-left,
.split-right,
.container {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-actions .btn {
  max-width: 100%;
  white-space: normal;
}

.cta-note {
  margin-top: 0.85rem;
  max-width: 42rem;
  line-height: 1.5;
}

.hero-title,
.page-title,
.hero-body,
.page-intro,
.contact-copy {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .cta-note {
    text-align: left;
  }
}

}

/* Website solutions additions */
.desktop-nav {
  gap: clamp(0.75rem, 1.5vw, 1.7rem);
}

.desktop-nav a {
  letter-spacing: 1.6px;
}

.header-cta {
  padding: 0.78rem 1rem;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.pricing-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  border-spacing: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.015);
}

.pricing-table thead th {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  min-width: 240px;
}

.plan-name {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.plan-price {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 1vw + 1.2rem, 2.4rem);
  line-height: 1;
  color: var(--white);
}

.plan-price span {
  font-size: 0.8rem;
  font-family: 'Raleway', sans-serif;
  color: var(--muted);
  margin-left: 0.2rem;
}

.yes,
.no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 800;
  line-height: 1;
}

.yes {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.no {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
}

.pricing-table small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
}
