@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/raleway-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #203050;
  --navy-dark: #172641;
  --navy-deep: #101c33;
  --navy-soft: #35527a;
  --blue: #2e6796;
  --gold: #6f91b7;
  --gold-light: #dce8f5;
  --ink: #172038;
  --muted: #667085;
  --line: #dce2ec;
  --line-dark: rgba(255, 255, 255, 0.16);
  --paper: #ffffff;
  --soft: #f3f5f9;
  --soft-blue: #e9eef6;
  --success: #2e6796;
  --shadow-sm: 0 12px 34px rgba(22, 35, 62, 0.08);
  --shadow-md: 0 24px 70px rgba(22, 35, 62, 0.13);
  --shadow-lg: 0 36px 100px rgba(12, 22, 42, 0.22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.15rem);
}

h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
}

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

::selection {
  background: var(--navy);
  color: #fff;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.soft-section {
  background: var(--soft);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 23px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.07rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading-light h2,
.section-heading-light > p:last-child {
  color: #fff;
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.heading-row .section-heading {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.25;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 15px 35px rgba(32, 48, 80, 0.18);
}

.button-primary:hover {
  background: var(--blue);
  box-shadow: 0 20px 42px rgba(32, 48, 80, 0.24);
}

.button-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(4, 12, 28, 0.16);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 24px;
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.utility-bar {
  position: relative;
  z-index: 110;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.utility-inner p {
  margin: 0;
  color: inherit;
  text-transform: uppercase;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.utility-links span {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.utility-links a {
  transition: color 180ms ease;
}

.utility-links a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(32, 48, 80, 0.09);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 50px rgba(22, 35, 62, 0.09);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 205px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.81rem;
  font-weight: 400;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  padding: 31px 0 28px;
  color: #344058;
  letter-spacing: 0.02em;
}

.desktop-nav > a:not(.nav-cta)::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--navy);
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.nav-dropdown:hover > a::after,
.nav-dropdown.active > a::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 46px;
  padding: 13px 19px !important;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > button {
  width: 25px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 4px);
  left: -32px;
  display: grid;
  width: 330px;
  padding: 16px;
  transform: translateY(12px);
  border: 1px solid var(--line);
  border-radius: 16px;
  opacity: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 9px;
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.dropdown-panel a:hover {
  background: var(--soft);
  color: var(--blue);
}

.dropdown-panel a span {
  color: #9aa4b6;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--navy);
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(111, 145, 183, 0.2), transparent 24%),
    radial-gradient(circle at 14% 84%, rgba(59, 92, 145, 0.35), transparent 28%),
    var(--navy);
  color: #fff;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(55px, 7vw, 105px);
  padding-top: 70px;
  padding-bottom: 92px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(3.2rem, 5.25vw, 5.45rem);
}

.hero-copy h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.02rem, 1.35vw, 1.21rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-bottom: 50px;
}

.hero-trust {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust > div {
  padding: 24px 20px 0 0;
}

.hero-trust > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-trust strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-trust span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.71rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  padding: 34px 0 32px 27px;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: -34px;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 180px 18px 18px 18px;
  content: "";
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 160px 12px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 17, 34, 0.48));
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-badge-top {
  top: 9px;
  right: -15px;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(46, 103, 150, 0.1);
}

.hero-badge-bottom {
  right: 24px;
  bottom: 3px;
  gap: 15px;
  padding: 15px 18px;
  border-radius: 12px;
}

.hero-badge-bottom > span {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 300;
}

.hero-badge-bottom strong,
.hero-badge-bottom small {
  display: block;
}

.hero-badge-bottom strong {
  font-size: 0.77rem;
  font-weight: 500;
}

.hero-badge-bottom small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 35px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.23);
}

.scroll-cue span::after {
  position: absolute;
  top: -35px;
  left: 0;
  width: 1px;
  height: 35px;
  content: "";
  background: #fff;
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(70px);
  }
}

.section-services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 38px 35px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(32, 48, 80, 0.16);
  border-radius: 50%;
  content: "";
  transform: scale(0.7);
  opacity: 0;
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.service-number {
  margin-bottom: auto;
  color: #9ca6b9;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: 48px 0 15px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
  line-height: 1.72;
}

.service-arrow {
  position: absolute;
  top: 31px;
  right: 33px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  transition:
    transform 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number,
.service-card:hover .service-arrow {
  color: #fff;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card:hover .service-arrow {
  transform: rotate(45deg);
  border-color: rgba(255, 255, 255, 0.28);
}

.service-grid-large .service-card {
  min-height: 360px;
}

.about-showcase {
  background: var(--soft);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 8vw, 120px);
}

.about-visual {
  position: relative;
  padding: 0 30px 44px 0;
}

.about-visual::before {
  position: absolute;
  top: -30px;
  right: 0;
  width: 65%;
  height: 65%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
}

.about-visual img {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-md);
}

.about-visual-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 260px;
  padding: 21px 24px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.about-visual-card span,
.about-visual-card strong {
  display: block;
}

.about-visual-card span {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-visual-card strong {
  font-size: 0.86rem;
  font-weight: 400;
}

.about-copy .section-heading {
  margin-bottom: 34px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin-bottom: 39px;
  border-top: 1px solid var(--line);
}

.benefit-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-grid span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 500;
}

.benefit-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.83rem;
}

.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-item {
  position: relative;
  min-height: 250px;
  padding: 30px 36px 35px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-item:not(:nth-child(3n + 1)) {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.process-item:nth-child(n + 4) {
  border-top: 0;
}

.process-item > span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.process-item h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.process-item p {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.reference-preview {
  background: var(--soft);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.reference-card {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e3e7ee;
  border-radius: 8px;
  background: #f1f3f6;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.reference-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: #c7d0df;
  box-shadow: var(--shadow-sm);
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.reference-card:hover img {
  transform: scale(1.035);
}

.seo-band {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(111, 145, 183, 0.2), transparent 23%),
    var(--navy);
}

.seo-band::before {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.seo-band .container {
  position: relative;
  z-index: 1;
}

.seo-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.seo-benefit-grid article {
  min-height: 315px;
  padding: 30px 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.seo-benefit-grid article > span {
  display: block;
  margin-bottom: 68px;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.seo-benefit-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.25rem;
}

.seo-benefit-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.compact-band {
  padding: 100px 0;
}

.home-faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq-layout .section-heading {
  margin-bottom: 35px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 400;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--navy);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 660px;
  padding: 0 45px 24px 0;
  margin: 0;
  font-size: 0.91rem;
}

.contact-cta {
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(73, 108, 163, 0.38), transparent 25%),
    var(--navy-deep);
}

.contact-cta-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 115px);
}

.contact-cta-copy {
  position: sticky;
  top: 125px;
  padding-top: 28px;
}

.contact-cta-copy h2 {
  margin-bottom: 24px;
  color: #fff;
}

.contact-cta-copy > p:not(.eyebrow) {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.03rem;
}

.contact-direct {
  display: grid;
  gap: 15px;
}

.contact-direct a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 1.03rem;
}

.contact-direct a span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-card {
  padding: 40px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 19px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row-three {
  grid-template-columns: 0.8fr 1fr 1fr;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #d7dde8;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 0.87rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 82, 129, 0.09);
}

.contact-form textarea::placeholder {
  color: #9ca5b5;
}

.check-label {
  display: grid;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.check-label input {
  width: 16px;
  min-height: 16px;
  margin-top: 3px;
  accent-color: var(--navy);
}

.check-label > span:last-child {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 300 !important;
  line-height: 1.55;
}

.check-label a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: -7px 0 0;
  text-align: center;
  font-size: 0.68rem;
}

.form-status {
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status-success {
  border: 1px solid rgba(46, 103, 150, 0.24);
  background: rgba(46, 103, 150, 0.08);
  color: #203050;
}

.form-status-error {
  border: 1px solid rgba(32, 48, 80, 0.28);
  background: rgba(32, 48, 80, 0.08);
  color: #172641;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.page-hero {
  position: relative;
  padding: 106px 0 102px;
  overflow: hidden;
  background: var(--navy);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
}

.page-hero-inner > div {
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
}

.page-lead {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}

.page-hero-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.page-hero-orb-one {
  top: -220px;
  right: -90px;
  width: 520px;
  height: 520px;
}

.page-hero-orb-two {
  right: 260px;
  bottom: -250px;
  width: 400px;
  height: 400px;
}

.custom-solution {
  padding: 95px 0;
  background: var(--navy-deep);
}

.custom-solution-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.custom-solution h2 {
  margin: 0;
  color: #fff;
}

.custom-solution-inner > div:last-child > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.02rem;
}

.packages-section {
  background: var(--soft);
}

.package-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
}

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

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

.package-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 36px 29px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.package-card.featured {
  transform: translateY(-14px);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.package-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-eyebrow {
  min-height: 24px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0 0 16px;
  padding-right: 55px;
  font-size: 1.35rem;
}

.package-label {
  min-height: 40px;
  margin-bottom: 12px;
  font-size: 0.73rem;
}

.package-price {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin: 6px 0 4px;
}

.package-price strong {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.package-price span {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.package-aside,
.package-note {
  min-height: 38px;
  margin: 9px 0 12px;
  font-size: 0.7rem;
}

.package-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 61px;
  margin: 8px 0 13px;
}

.package-stats span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.62rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.39em;
  left: 0;
  width: 11px;
  height: 6px;
  border-bottom: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-card.featured h3,
.package-card.featured .package-price strong,
.package-card.featured .package-eyebrow {
  color: #fff;
}

.package-card.featured .package-label,
.package-card.featured .package-note,
.package-card.featured .package-aside,
.package-card.featured .package-price span,
.package-card.featured .check-list li {
  color: rgba(255, 255, 255, 0.63);
}

.package-card.featured .package-stats span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.package-card.featured .check-list li::before {
  border-color: var(--gold-light);
}

.package-card.featured .button-primary {
  background: #fff;
  color: var(--navy);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-grid article {
  min-height: 285px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.reason-grid article > span {
  display: block;
  margin-bottom: 65px;
  color: var(--gold);
  font-size: 0.65rem;
}

.reason-grid h3 {
  margin-bottom: 13px;
  font-size: 1.15rem;
}

.reason-grid p {
  margin: 0;
  font-size: 0.8rem;
}

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

.strategy-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.strategy-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 0.67rem;
}

.strategy-grid h3 {
  margin-bottom: 16px;
}

.strategy-grid p {
  font-size: 0.87rem;
}

.strategy-grid ul {
  display: grid;
  gap: 9px;
  padding: 20px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.strategy-grid li {
  color: var(--ink);
  font-size: 0.78rem;
}

.legal-note {
  max-width: 850px;
  padding: 20px 24px;
  margin: 35px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 0.72rem;
}

.shop-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(55px, 8vw, 110px);
}

.shop-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-pill-row span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.7rem;
}

.shop-offer {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.shop-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.shop-price strong {
  color: var(--navy);
  font-size: 3.1rem;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.shop-price span {
  color: var(--muted);
  font-size: 0.73rem;
}

.shop-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 21px;
}

.shop-mini-stats div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.shop-mini-stats strong,
.shop-mini-stats span {
  display: block;
}

.shop-mini-stats strong {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 400;
}

.shop-mini-stats span {
  color: var(--muted);
  font-size: 0.64rem;
}

.shop-offer .button {
  width: 100%;
}

.three-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.three-step-grid article {
  min-height: 300px;
  padding: 33px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.three-step-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-size: 0.68rem;
}

.three-step-grid h3 {
  margin-bottom: 13px;
}

.three-step-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.price-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: var(--navy);
  color: #fff;
}

.price-table th,
.price-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-table tbody th {
  width: 28%;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
}

.price-table tbody td {
  color: var(--muted);
  font-size: 0.81rem;
}

.price-table tbody td:last-child {
  width: 16%;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}

.price-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-disclaimer {
  max-width: 880px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.73rem;
}

.mini-cta {
  padding: 85px 0;
  background: var(--navy);
}

.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.mini-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.references-page {
  background: var(--soft);
}

.reference-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.reference-intro p {
  max-width: 760px;
  margin: 0;
  font-size: 1.04rem;
}

.reference-intro span {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 8vw, 110px);
}

.about-story-image {
  position: relative;
  padding: 30px 0 0 30px;
}

.about-story-image::before {
  position: absolute;
  inset: 0 28% 28% 0;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--soft-blue);
}

.about-story-image img {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 760px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-story-copy h2 {
  margin-bottom: 25px;
}

.about-story-copy > p:not(.eyebrow) {
  font-size: 0.96rem;
}

.about-story-copy .button {
  margin-top: 12px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-pillars article {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.about-pillars span {
  display: block;
  margin-bottom: 68px;
  color: var(--gold);
  font-size: 0.67rem;
}

.about-pillars p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.company-data-section {
  background: #fff;
}

.company-data-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
}

.company-data {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-data > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-data dt {
  color: var(--muted);
  font-size: 0.73rem;
}

.company-data dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 400;
}

.contact-page {
  background: var(--soft);
}

.contact-page-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(55px, 8vw, 110px);
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-cards > a {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-cards > a > span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-cards strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 400;
}

.contact-cards small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.request-checklist {
  padding: 27px;
  margin-top: 32px;
  border-radius: 14px;
  background: #fff;
}

.request-checklist h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.request-checklist .check-list {
  margin: 0;
}

.contact-form-card-light {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.legal-section {
  background: var(--soft);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 70px;
}

.legal-aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 8px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.legal-aside > p {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside > a {
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.legal-aside > a:hover {
  color: var(--blue);
}

.legal-summary span {
  display: flex;
  flex-direction: column;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
}

.legal-summary span strong {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 400;
}

.legal-content {
  padding: 50px 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-content section {
  scroll-margin-top: 125px;
}

.legal-content section + section {
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 17px;
  font-size: 1.65rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.91rem;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-data {
  margin: 0;
}

.legal-data > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data dt {
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-data dd {
  margin: 0;
  color: var(--navy);
  font-size: 0.84rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.blog-image {
  display: block;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.035);
}

.blog-body {
  padding: 34px;
}

.blog-body > p:first-child {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-body h2 {
  margin-bottom: 17px;
  font-size: 1.8rem;
}

.blog-body > p:not(:first-child) {
  font-size: 0.9rem;
}

.article-hero {
  padding: 95px 0;
  background: var(--navy);
}

.article-hero-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(55px, 8vw, 110px);
}

.article-hero h1 {
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(2.75rem, 4.7vw, 4.75rem);
}

.article-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.03rem;
}

.article-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.article-section {
  background: var(--soft);
}

.article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 75px;
}

.article-layout > aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 8px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.article-layout > aside p {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-layout > aside a {
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.article-layout > aside a:hover {
  color: var(--blue);
}

.article-content {
  padding: 50px 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-content section {
  scroll-margin-top: 125px;
}

.article-content section + section {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.article-content section > span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 500;
}

.article-content h2 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.article-content p {
  font-size: 0.95rem;
}

.article-conclusion {
  padding: 35px;
  margin-top: 48px;
  border-radius: 14px;
  background: var(--soft);
}

.article-conclusion h2 {
  font-size: 1.75rem;
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 100px 0;
  text-align: center;
}

.not-found .eyebrow {
  justify-content: center;
}

.site-footer {
  padding: 78px 0 0;
  background: #0f192c;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 60px;
  padding-bottom: 65px;
}

.footer-intro img {
  width: 210px;
  height: auto;
  margin-bottom: 24px;
  padding: 11px 13px;
  border-radius: 7px;
  background: #fff;
}

.footer-intro > p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.83rem;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-label {
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-column a,
.footer-contact > a:not(.footer-arrow),
.footer-contact address {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.76rem;
  font-style: normal;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-contact > a:hover {
  color: #fff;
}

.footer-contact address {
  max-width: 220px;
  margin-top: 8px;
}

.footer-arrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 5px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 0.72rem;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom a,
.footer-bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.65rem;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 25px;
  z-index: 84;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #1ea764;
  color: #fff;
  box-shadow: 0 14px 32px rgba(14, 82, 51, 0.26);
  font-size: 0.7rem;
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 91px;
  z-index: 82;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transform: translateY(10px);
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bottom-bar {
  display: none;
}

.cookie-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  width: min(530px, calc(100% - 32px));
  grid-template-columns: 45px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(10, 20, 42, 0.24);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 1.25rem;
}

.cookie-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 500;
}

.cookie-title {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
}

.cookie-copy p:not(.cookie-title) {
  margin-bottom: 5px;
  padding-right: 15px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--blue);
  font-size: 0.68rem;
  text-decoration: underline;
}

.cookie-options {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cookie-options[hidden] {
  display: none;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
}

.cookie-options input {
  accent-color: var(--navy);
}

.cookie-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.7rem;
}

.cookie-settings-button {
  padding: 7px 4px;
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 0.68rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(7, 13, 25, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(720px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.7rem;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav > a,
  .nav-dropdown > a {
    font-size: 0.75rem;
  }

  .brand img {
    width: 180px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.45rem);
  }

  .reference-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .package-card.featured {
    transform: none;
  }

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

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

  .section {
    padding: 88px 0;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 185px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1300;
    top: 74px;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - 74px);
    height: calc(100dvh - 74px);
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    pointer-events: none;
    transition:
      transform 260ms ease,
      opacity 260ms ease,
      visibility 0s linear 260ms;
  }

  .mobile-menu.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-menu-inner {
    display: grid;
    height: 100%;
    padding: 28px 24px 120px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-inner > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 1.15rem;
  }

  .mobile-subnav {
    display: grid;
    padding: 12px 0 12px 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-subnav a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 0.78rem;
  }

  .mobile-contact {
    display: grid;
    gap: 7px;
    padding-top: 27px;
    color: var(--blue);
    font-size: 0.82rem;
  }

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 85px;
    padding-bottom: 115px;
  }

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

  .hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-image-frame img {
    min-height: auto;
  }

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

  .about-grid,
  .contact-cta-grid,
  .shop-intro-grid,
  .about-story-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 680px;
  }

  .about-visual img {
    min-height: 0;
  }

  .contact-cta-copy {
    position: static;
  }

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

  .process-item:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .process-item:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid var(--line);
  }

  .process-item:nth-child(3) {
    border-top: 0;
  }

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

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

  .faq-layout,
  .company-data-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-hero {
    padding: 84px 0;
  }

  .page-hero-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .custom-solution-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .three-step-grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .three-step-grid article,
  .about-pillars article {
    min-height: auto;
  }

  .three-step-grid span,
  .about-pillars span {
    margin-bottom: 40px;
  }

  .legal-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-aside,
  .article-layout > aside {
    position: static;
  }

  .article-hero-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 69px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .section-heading > p:last-child {
    font-size: 0.94rem;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.66rem;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 38px;
  }

  .button {
    min-height: 49px;
    padding: 13px 20px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 160px;
  }

  .mobile-menu {
    top: 68px;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
  }

  .home-hero {
    background:
      radial-gradient(circle at 90% 58%, rgba(111, 145, 183, 0.2), transparent 24%),
      var(--navy);
  }

  .hero-grid-lines {
    background-size: 58px 58px;
  }

  .hero-inner {
    gap: 60px;
    padding-top: 65px;
    padding-bottom: 100px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 21px;
    margin-bottom: 36px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

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

  .hero-trust > div {
    display: flex;
    align-items: baseline;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-trust > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-trust strong {
    min-width: 50px;
    margin: 0;
    font-size: 1.08rem;
  }

  .hero-visual {
    padding: 20px 0 22px 14px;
  }

  .hero-visual::before {
    right: -10px;
    border-radius: 90px 14px 14px 14px;
  }

  .hero-image-frame {
    border-radius: 80px 10px 10px 10px;
  }

  .hero-badge-top {
    top: -3px;
    right: -4px;
    font-size: 0.61rem;
  }

  .hero-badge-bottom {
    right: 8px;
    bottom: 0;
    padding: 11px 13px;
  }

  .hero-badge-bottom > span {
    font-size: 1.4rem;
  }

  .hero-badge-bottom strong {
    font-size: 0.68rem;
  }

  .hero-badge-bottom small {
    font-size: 0.56rem;
  }

  .scroll-cue {
    display: none;
  }

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

  .service-card {
    min-height: 275px;
    padding: 30px 27px;
  }

  .service-card h3 {
    margin-top: 40px;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    padding: 0 16px 33px 0;
  }

  .about-visual img {
    min-height: 0;
    border-radius: 20px;
  }

  .about-visual-card {
    width: 235px;
  }

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

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

  .process-item,
  .process-item:nth-child(even) {
    min-height: auto;
    padding: 27px 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .process-item:first-child {
    border-top: 1px solid var(--line);
  }

  .process-item > span {
    margin-bottom: 28px;
  }

  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .seo-band {
    padding: 75px 0;
  }

  .seo-benefit-grid {
    grid-template-columns: 1fr;
  }

  .seo-benefit-grid article {
    min-height: auto;
  }

  .seo-benefit-grid article > span {
    margin-bottom: 38px;
  }

  .faq-layout {
    gap: 35px;
  }

  .contact-cta {
    padding: 75px 0;
  }

  .contact-cta-grid {
    gap: 48px;
  }

  .contact-form-card {
    padding: 25px 19px;
    border-radius: 15px;
  }

  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
  }

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

  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .page-lead {
    font-size: 0.95rem;
  }

  .custom-solution {
    padding: 70px 0;
  }

  .package-grid-4,
  .package-grid-3 {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 32px 23px 27px;
  }

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

  .reason-grid article {
    min-height: auto;
  }

  .reason-grid article > span {
    margin-bottom: 38px;
  }

  .strategy-grid article {
    padding: 29px 25px;
  }

  .shop-offer {
    padding: 29px 22px;
  }

  .shop-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
  }

  .price-table {
    min-width: 760px;
  }

  .mini-cta {
    padding: 68px 0;
  }

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

  .reference-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .about-story-image {
    padding: 18px 0 0 18px;
  }

  .company-data > div,
  .legal-data > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-content,
  .article-content {
    padding: 30px 22px;
  }

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

  .blog-image img {
    height: 250px;
  }

  .blog-body {
    padding: 27px 23px;
  }

  .article-hero {
    padding: 70px 0;
  }

  .article-hero h1 {
    font-size: 2.65rem;
  }

  .article-conclusion {
    padding: 25px 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .footer-intro,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 22px 0;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 10px 17px;
  }

  .floating-whatsapp,
  .back-to-top {
    display: none;
  }

  .bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    height: 69px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 25px rgba(24, 35, 57, 0.08);
    backdrop-filter: blur(15px);
  }

  .bottom-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 500;
  }

  .bottom-bar .bottom-primary {
    margin: 8px 4px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
  }

  .bottom-icon {
    font-size: 1.2rem;
    line-height: 1;
  }

  .cookie-notice {
    right: 12px;
    bottom: 81px;
    width: calc(100% - 24px);
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 20px 16px;
  }

  .cookie-mark {
    width: 34px;
    height: 34px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-settings-button {
    grid-column: 1 / -1;
  }

  .lightbox {
    padding: 15px;
  }
}

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

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

/* Voxern index visual system, recolored from the Conceptum logo */
:root {
  --conceptum-950: #101c33;
  --conceptum-900: #172641;
  --conceptum-800: #203050;
  --conceptum-700: #2e4d73;
  --conceptum-600: #2e6796;
  --conceptum-400: #6f91b7;
  --conceptum-200: #b8cce1;
  --conceptum-100: #dce8f5;
  --conceptum-50: #f4f7fb;
  --logo-gradient: linear-gradient(
    135deg,
    var(--conceptum-950) 0%,
    var(--conceptum-800) 48%,
    var(--conceptum-600) 100%
  );
  --logo-gradient-soft: linear-gradient(
    135deg,
    rgba(32, 48, 80, 0.1),
    rgba(46, 103, 150, 0.04)
  );
  --container: 1180px;
  --soft: var(--conceptum-50);
  --soft-blue: var(--conceptum-100);
  --line: rgba(32, 48, 80, 0.12);
  --shadow-sm: 0 16px 48px rgba(16, 28, 51, 0.08);
  --shadow-md: 0 28px 90px rgba(16, 28, 51, 0.15);
  --shadow-lg: 0 40px 120px rgba(16, 28, 51, 0.27);
}

body {
  padding-bottom: 88px;
  background: linear-gradient(180deg, #ffffff 0%, var(--conceptum-50) 52%, #ffffff 100%);
}

.section {
  padding: 92px 0;
}

.soft-section,
.packages-section,
.contact-section,
.faq-section {
  background: linear-gradient(180deg, var(--conceptum-50), #ffffff);
}

.utility-bar,
.site-footer,
.custom-solution,
.contact-cta {
  background: var(--logo-gradient);
}

.header-cta,
.button-primary,
.contact-submit,
.footer-arrow,
.cookie-mark {
  border-color: transparent;
  background: var(--logo-gradient);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(32, 48, 80, 0.2);
}

.button {
  border-radius: 999px;
}

.eyebrow,
.package-eyebrow,
.footer-label,
.section-label {
  color: var(--conceptum-600);
}

.home-hero {
  min-height: 760px;
  background:
    linear-gradient(105deg, rgba(16, 28, 51, 0.99) 0%, rgba(32, 48, 80, 0.95) 46%, rgba(46, 103, 150, 0.78) 100%),
    var(--conceptum-800);
}

.home-hero::after,
.page-hero::after,
.article-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(184, 204, 225, 0.24), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(46, 103, 150, 0.28), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  min-height: 760px;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.78fr);
  gap: 54px;
  padding: 76px 0 116px;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1 {
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.hero-copy h1 em {
  background: linear-gradient(135deg, #ffffff 0%, var(--conceptum-100) 35%, var(--conceptum-400) 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead,
.page-lead,
.article-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.hero-image-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  right: -18px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 38px;
}

.hero-image-frame img {
  min-height: 500px;
}

.hero-badge {
  border-color: rgba(32, 48, 80, 0.1);
  border-radius: 999px;
  box-shadow: 0 20px 54px rgba(16, 28, 51, 0.2);
}

.status-dot {
  background: var(--conceptum-600);
  box-shadow: 0 0 0 5px rgba(46, 103, 150, 0.13);
}

.page-hero,
.article-hero {
  isolation: isolate;
  background: var(--logo-gradient);
}

.page-hero {
  padding: 76px 0 116px;
}

.page-hero-inner,
.article-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-orb {
  border-color: rgba(184, 204, 225, 0.2);
}

.section-heading h2,
.heading-row h2,
.contact-cta h2,
.custom-solution h2 {
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
}

.service-card,
.benefit-card,
.process-item,
.reason-grid article,
.about-pillars article,
.three-step-grid article,
.contact-method,
.faq-item,
.blog-card,
.reference-card {
  border-color: rgba(32, 48, 80, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, var(--conceptum-50));
  box-shadow: var(--shadow-sm);
}

.service-card::before,
.benefit-card::before,
.contact-method::before,
.blog-card::before {
  background: linear-gradient(90deg, var(--conceptum-800), var(--conceptum-600), var(--conceptum-200));
}

.package-grid {
  gap: 22px;
}

.package-card {
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(32, 48, 80, 0.1);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, var(--conceptum-50));
  box-shadow: var(--shadow-sm);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.package-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--logo-gradient-soft);
  content: "";
  pointer-events: none;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(16, 28, 51, 0.14);
}

.package-card.featured {
  transform: translateY(-14px);
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--logo-gradient);
  box-shadow: 0 34px 100px rgba(16, 28, 51, 0.24);
}

.package-ribbon {
  top: 18px;
  right: -46px;
  z-index: 2;
  width: 190px;
  padding: 9px 0;
  transform: rotate(35deg);
  border-radius: 0;
  background: linear-gradient(135deg, var(--conceptum-200), var(--conceptum-600));
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
}

.package-card h3 {
  margin: 16px 0 10px;
  padding-right: 44px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.package-label,
.package-aside,
.package-note,
.check-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.package-price {
  margin: 23px 0;
  padding: 18px;
  border: 1px solid rgba(46, 103, 150, 0.1);
  border-radius: 24px;
  background: var(--logo-gradient-soft);
}

.package-price strong {
  font-size: 42px;
  font-weight: 300;
}

.package-price span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card.featured .package-price {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
}

.package-card.featured .button-primary {
  background: linear-gradient(135deg, #ffffff, var(--conceptum-100));
  color: var(--conceptum-800);
}

.check-list li::before {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--conceptum-600);
  box-shadow: 0 0 0 5px rgba(46, 103, 150, 0.11);
  transform: none;
}

.package-card.featured .check-list li::before {
  border: 0;
  background: var(--conceptum-200);
  box-shadow: 0 0 0 5px rgba(184, 204, 225, 0.13);
}

.bottom-bar {
  position: fixed;
  right: auto;
  bottom: 18px;
  left: 50%;
  z-index: 1200;
  display: flex;
  width: min(620px, calc(100% - 28px));
  height: auto;
  align-items: center;
  grid-template-columns: none;
  gap: 8px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(32, 48, 80, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(16, 28, 51, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.bottom-bar a {
  display: inline-flex;
  min-height: 52px;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 9px;
  margin: 0;
  border: 1px solid rgba(32, 48, 80, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, var(--conceptum-50));
  color: var(--conceptum-950);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.bottom-bar a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 28, 51, 0.1);
}

.bottom-bar .bottom-primary {
  margin: 0;
  border-color: transparent;
  border-radius: 999px;
  background: var(--logo-gradient);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 48, 80, 0.22);
}

.bottom-icon {
  font-size: 19px;
  line-height: 1;
}

.cookie-notice {
  bottom: 96px;
  border-color: rgba(32, 48, 80, 0.13);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, var(--conceptum-50));
}

.floating-whatsapp,
.back-to-top {
  bottom: 105px;
}

@media (max-width: 1100px) {
  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .brand img {
    width: 130px;
  }

  .home-hero {
    min-height: auto;
    background:
      linear-gradient(105deg, rgba(16, 28, 51, 0.99), rgba(32, 48, 80, 0.94) 68%, rgba(46, 103, 150, 0.84)),
      var(--conceptum-800);
  }

  .hero-inner {
    min-height: auto;
    gap: 34px;
    padding: 64px 0 94px;
  }

  .hero-copy h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: 0.02em;
    line-height: 1.02;
  }

  .hero-lead,
  .page-lead,
  .article-hero p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .hero-visual {
    display: none;
  }

  .page-hero {
    padding: 64px 0 94px;
  }

  .section-heading h2,
  .heading-row h2,
  .contact-cta h2,
  .custom-solution h2 {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.14;
  }

  .package-card {
    padding: 26px;
    border-radius: 30px;
  }

  .bottom-bar {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: calc(100% - 20px);
    height: auto;
    grid-template-columns: none;
    gap: 6px;
    padding: 7px;
    transform: translateX(-50%);
    border-radius: 999px;
  }

  .bottom-bar a,
  .bottom-bar .bottom-primary {
    min-height: 50px;
    flex-direction: row;
    gap: 6px;
    margin: 0;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .bottom-bar a span:not(.bottom-icon) {
    font-size: 10px;
  }

  .bottom-icon {
    font-size: 17px;
  }

  .cookie-notice {
    bottom: 82px;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

/* Keep homepage package prices compact and on one balanced line */
.home-packages .package-price {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-packages .package-price strong {
  min-width: 0;
  flex: 0 1 auto;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.home-packages .package-price span {
  flex: 0 0 auto;
  padding-bottom: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .home-packages .package-price {
    gap: 8px;
    padding: 14px;
  }

  .home-packages .package-price strong {
    font-size: 30px;
  }

  .home-packages .package-price span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 767px) {
  .home-packages .package-price {
    padding: 16px;
  }

  .home-packages .package-price strong {
    font-size: 32px;
  }

  .home-packages .package-price span {
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .home-packages .package-price strong {
    font-size: 28px;
  }

  .home-packages .package-price span {
    font-size: 9px;
  }
}

/* Prevent mobile horizontal drift and keep the bottom bar inside the viewport */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

@media (max-width: 767px) {
  .bottom-bar {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    display: grid;
    width: auto;
    max-width: calc(100vw - 16px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    transform: none;
    border-radius: 22px;
  }

  .bottom-bar a,
  .bottom-bar .bottom-primary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    gap: 4px;
    padding: 0 5px;
    overflow: hidden;
    border-radius: 18px;
    font-size: 9px;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .bottom-bar a span:not(.bottom-icon) {
    min-width: 0;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bottom-icon {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .cookie-notice {
    bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .bottom-bar {
    right: 6px;
    left: 6px;
    max-width: calc(100vw - 12px);
  }

  .bottom-bar a,
  .bottom-bar .bottom-primary,
  .bottom-bar a span:not(.bottom-icon) {
    font-size: 8px;
  }

  .bottom-icon {
    font-size: 13px;
  }
}

/* Premium footer branding and contact CTA */
.footer-intro img {
  width: min(230px, 100%);
  height: auto;
  padding: 0;
  margin-bottom: 28px;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 12px 28px rgba(16, 28, 51, 0.2));
}

.footer-contact .footer-arrow {
  position: relative;
  display: inline-flex;
  width: min(250px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 21px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(184, 204, 225, 0.08));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(16, 28, 51, 0.22);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.footer-contact .footer-arrow > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, var(--conceptum-100));
  color: var(--conceptum-900);
  box-shadow: 0 10px 24px rgba(16, 28, 51, 0.2);
  font-size: 17px;
  transition: transform 220ms ease;
}

.footer-contact .footer-arrow:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.23), rgba(184, 204, 225, 0.13));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 54px rgba(16, 28, 51, 0.28);
}

.footer-contact .footer-arrow:hover > span {
  transform: translate(2px, -2px);
}

.footer-contact .footer-arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .footer-intro img {
    width: 210px;
  }

  .footer-contact .footer-arrow {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 116px;
  }

  .bottom-bar a span:not(.bottom-icon) {
    font-size: 9px;
  }
}

/* Final Voxern alignment: typography, mobile top bar, imagery and footer spacing */
html {
  background: var(--conceptum-950);
}

body {
  padding-bottom: 0;
}

.utility-packages {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.69rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-packages b {
  color: #ffffff;
  font-weight: 500;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1 {
  width: 100%;
  max-width: 780px;
  font-size: clamp(25.2px, 3.42vw, 46.8px);
  font-weight: 300;
  letter-spacing: 0.012em;
  line-height: 1.08;
  text-wrap: balance;
}

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

.hero-lead,
.page-lead,
.article-hero p:not(.eyebrow) {
  width: 100%;
  max-width: 770px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.page-hero-inner > div,
.article-hero-inner > div {
  width: 100%;
  max-width: 880px;
}

.hero-image-frame {
  background: #ffffff;
}

.hero-image-frame img {
  min-height: 0;
  aspect-ratio: 1;
  background: #ffffff;
  object-fit: cover;
  object-position: center top;
}

.hero-image-overlay {
  background: none;
}

.home-packages .package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin-inline: auto;
}

.home-packages .section-heading {
  margin-inline: auto;
  text-align: center;
}

.home-packages .section-heading .eyebrow {
  justify-content: center;
}

.floating-whatsapp {
  display: none !important;
}

.site-footer {
  padding-bottom: 96px;
}

@media (max-width: 960px) {
  .utility-bar {
    position: sticky;
    top: 0;
    z-index: 112;
    display: block;
  }

  .utility-inner {
    min-height: 32px;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.045em;
  }

  .utility-packages {
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }

  .utility-links {
    gap: 0;
    margin-left: auto;
    white-space: nowrap;
  }

  .utility-links span,
  .utility-links a:last-child {
    display: none;
  }

  .site-header {
    top: 32px;
  }

  .mobile-menu {
    top: 106px;
    height: calc(100vh - 106px);
    height: calc(100dvh - 106px);
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 0;
  }

  .hero-copy h1,
  .page-hero h1,
  .article-hero h1 {
    max-width: 100%;
    font-size: clamp(20.4px, 6vw, 28.8px);
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .hero-lead,
  .page-lead,
  .article-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 0 94px;
  }

  .hero-visual {
    display: block;
    width: 100%;
    max-width: 420px;
    padding: 0;
    margin: 8px auto 0;
  }

  .hero-visual::before,
  .hero-badge {
    display: none;
  }

  .hero-image-frame {
    border-radius: 28px;
  }

  .home-packages .package-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 420px) {
  .utility-packages {
    gap: 7px;
    font-size: 8px;
  }

  .utility-links {
    font-size: 8px;
  }
}

/* Final Voxern-aligned process and package refinements */
.process-item,
.process-item:not(:nth-child(3n + 1)) {
  padding-right: 35px;
  padding-left: 35px;
}

.package-card > *:not(.package-ribbon) {
  position: relative;
  z-index: 1;
}

.package-card .package-ribbon {
  position: absolute;
  z-index: 2;
}

.package-index {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--conceptum-600);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.package-index::after {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--conceptum-600), transparent);
  content: "";
}

.package-eyebrow {
  min-height: 0;
  margin-bottom: 7px;
}

.package-card h3 {
  min-height: 68px;
  margin-top: 0;
}

.package-card.featured .package-index {
  color: var(--conceptum-100);
}

.package-card.featured .package-index::after {
  background: linear-gradient(90deg, var(--conceptum-100), transparent);
}

.home-packages .package-card {
  min-height: 760px;
}

@media (max-width: 1100px) {
  .process-item,
  .process-item:not(:nth-child(3n + 1)),
  .process-item:nth-child(even) {
    padding-right: 32px;
    padding-left: 32px;
  }

  .home-packages .package-grid {
    max-width: 940px;
  }

  .home-packages .package-card {
    padding: 27px;
  }
}

@media (max-width: 767px) {
  .process-item,
  .process-item:not(:nth-child(3n + 1)),
  .process-item:nth-child(even) {
    padding-right: 24px;
    padding-left: 24px;
  }

  .package-card h3 {
    min-height: 0;
  }

  .home-packages .package-card {
    min-height: 0;
    padding: 26px;
  }
}
