:root {
  --navy-950: #060f1f;
  --navy-900: #0b1f3a;
  --navy-800: #122a4a;
  --navy-700: #1c3a63;
  --slate-600: #4a5b75;
  --slate-500: #6b7a92;
  --slate-400: #9aa6b8;
  --slate-300: #cdd5e1;
  --slate-200: #dde3ec;
  --slate-100: #eef2f7;
  --paper: #f8fafc;
  --white: #ffffff;
  --accent: #f4b740;
  --accent-soft: #fde9b8;
  --accent-deep: #b9851f;
  --green: #2ec27e;
  --amber: #f4b740;
  --blue: #4f8cff;
  --danger: #d23f3f;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06), 0 1px 3px rgba(11, 31, 58, 0.04);
  --shadow: 0 8px 24px rgba(11, 31, 58, 0.08), 0 2px 6px rgba(11, 31, 58, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.18), 0 4px 12px rgba(11, 31, 58, 0.08);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy-800);
  text-decoration: none;
}

a:hover {
  color: var(--navy-700);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.15;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1em;
  color: var(--slate-600);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-700);
  margin: 0 0 0.8rem;
}

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

.accent {
  color: var(--navy-700);
  background: linear-gradient(180deg, transparent 60%, var(--accent-soft) 60%);
  padding: 0 0.1em;
  font-style: italic;
  font-family: var(--font-display);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.brand-suffix {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--slate-500);
  text-transform: uppercase;
  margin-top: 2px;
}

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

.primary-nav a {
  font-weight: 500;
  color: var(--slate-600);
  font-size: 0.95rem;
  position: relative;
}

.primary-nav a:hover {
  color: var(--navy-900);
}

.primary-nav a.active {
  color: var(--navy-900);
}

.primary-nav a.active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--navy-900);
}

.btn-accent:hover {
  background: var(--accent-deep);
  color: var(--navy-900);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  padding: 14px 16px;
}

.btn-ghost:hover {
  color: var(--navy-700);
}

.btn-block {
  width: 100%;
}

/* Hero (home) */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(80% 60% at 90% 10%, rgba(244, 183, 64, 0.18), transparent 60%),
    radial-gradient(70% 60% at 10% 90%, rgba(28, 58, 99, 0.12), transparent 60%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 6px;
}

.lede {
  font-size: 1.12rem;
  color: var(--slate-600);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 540px;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1;
}

.hero-trust span {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.halo {
  position: absolute;
  inset: -10% -10% 0 10%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(28, 58, 99, 0.18), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

.card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  z-index: 1;
}

.card-float {
  top: 30px;
  right: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-stack {
  bottom: 0;
  left: 0;
  width: 240px;
  border-left: 4px solid var(--accent);
}

.card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }
.dot-blue { background: var(--blue); }

.card-bar {
  margin-top: 6px;
  height: 6px;
  background: var(--slate-100);
  border-radius: 999px;
  overflow: hidden;
}

.card-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy-700), var(--accent));
}

.card-foot {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-title {
  margin: 0;
  font-weight: 600;
  color: var(--navy-900);
}

.card-meta {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: 80px 0 64px;
  background: radial-gradient(60% 80% at 80% 0%, rgba(244, 183, 64, 0.14), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(28, 58, 99, 0.08), transparent 60%),
    var(--paper);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}

.page-hero .lede {
  max-width: 680px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 14px;
}

.breadcrumbs a {
  color: var(--slate-600);
}

.breadcrumbs a:hover {
  color: var(--navy-900);
}

.breadcrumbs span[aria-hidden] {
  color: var(--slate-300);
}

/* Logos / industries */
.logos {
  padding: 36px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  background: var(--white);
}

.logos-label {
  text-align: center;
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.logos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  color: var(--navy-800);
  font-weight: 500;
}

.logos-list li {
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-alt {
  background: var(--paper);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--slate-100);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--slate-300);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.service {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 31, 58, 0.16);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service h3 {
  margin-bottom: 8px;
}

.service p {
  margin: 0;
  font-size: 0.97rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
}

/* Service detail blocks (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail--reverse > :first-child {
  order: 2;
}

.service-detail .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.service-detail .service-icon svg {
  width: 28px;
  height: 28px;
}

.service-detail h2 {
  font-size: 1.8rem;
}

.service-detail .meta {
  font-size: 0.85rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.service-detail-card {
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.service-detail-card h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-700);
  font-weight: 700;
}

.service-detail-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  font-size: 0.95rem;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.service-detail-card li:last-child {
  border-bottom: 0;
}

.service-detail-card li span {
  color: var(--slate-500);
  font-size: 0.86rem;
}

/* Pricing / engagement */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--navy-900);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: var(--navy-900);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 14px 0 4px;
  line-height: 1;
}

.pricing-price small {
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  flex: 1;
}

.pricing-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--navy-800);
  border-bottom: 1px solid rgba(11, 31, 58, 0.05);
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent-deep);
  font-weight: 700;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.06);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-700);
  font-weight: 600;
}

.steps h3 {
  margin-bottom: 4px;
}

.steps p {
  margin: 0;
  font-size: 0.97rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--navy-800);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 3px solid var(--accent);
  box-sizing: border-box;
}

.about-quote {
  background: var(--navy-900);
  color: var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.about-quote::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(244, 183, 64, 0.18);
  line-height: 1;
  pointer-events: none;
}

.about-quote blockquote {
  margin: 0;
  position: relative;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.5;
}

.about-quote footer {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

/* Values grid (about) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.value h3 {
  margin-bottom: 6px;
}

.value p {
  margin: 0;
  font-size: 0.97rem;
}

/* Testimonials grid (about) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy-900);
  margin: 0 0 16px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate-500);
}

.testimonial cite strong {
  display: block;
  color: var(--navy-900);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.bio-portrait {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bio-portrait::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(244, 183, 64, 0.45), transparent 60%);
  filter: blur(8px);
}

.bio-portrait::after {
  content: "DJ";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.95);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.bio-portrait-caption {
  position: relative;
  background: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.85rem;
  z-index: 1;
}

.bio-portrait-caption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.about-quote.no-quote::before {
  content: none;
}

/* CTA */
.cta {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--slate-100);
  padding: 96px 0;
}

.cta h2 {
  color: var(--white);
}

.cta-sub {
  color: var(--slate-300);
  font-size: 1.05rem;
  max-width: 460px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.cta-contact {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-contact li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: baseline;
  color: var(--slate-100);
}

.cta-contact span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.cta-contact a {
  color: var(--white);
}

.cta-contact a:hover {
  color: var(--accent);
}

.cta-banner {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  margin: 64px auto;
  max-width: 920px;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  color: var(--slate-300);
  max-width: 540px;
  margin: 0 auto 24px;
}

/* Form */
.contact-form {
  background: var(--white);
  color: var(--navy-900);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.contact-form--solo {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-800);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--navy-900);
  background: var(--paper);
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(28, 58, 99, 0.18);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(210, 63, 63, 0.16);
}

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

.contact-form .btn {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-600);
  min-height: 1.2em;
}

.form-note.success {
  color: var(--green);
}

.form-note.error {
  color: var(--danger);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.15s ease;
}

.faq-list details[open] {
  border-color: var(--navy-700);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  position: relative;
  padding-right: 28px;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--accent-deep);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.15s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 12px 0 0;
}

/* Blog list */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 31, 58, 0.16);
}

.post-meta {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.post-meta .tag {
  color: var(--accent-deep);
  font-weight: 600;
}

.post-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}

.post-card a:hover h3 {
  color: var(--navy-700);
}

.post-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  flex: 1;
}

.post-card .read-more {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.post-card .read-more::after {
  content: " →";
  transition: transform 0.15s ease;
}

.post-card:hover .read-more::after {
  margin-left: 2px;
}

.post-featured {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.post-featured h2 {
  color: var(--white);
  font-size: 2rem;
}

.post-featured p {
  color: var(--slate-300);
}

.post-featured .post-meta {
  color: var(--accent);
}

.post-featured .post-meta .tag {
  color: var(--accent);
}

.post-featured .read-more {
  color: var(--accent);
}

.post-featured-art {
  aspect-ratio: 1 / 1;
  background: radial-gradient(60% 60% at 50% 40%, rgba(244, 183, 64, 0.5), transparent 60%),
    linear-gradient(135deg, var(--navy-700), var(--navy-950));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.post-featured-art::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 2px dashed rgba(244, 183, 64, 0.6);
  border-radius: 50%;
}

/* Blog post */
.post-article {
  padding: 64px 0 96px;
}

.post-article header {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.post-article h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.post-article .post-meta {
  justify-content: center;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-800);
}

.post-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.post-content p {
  color: var(--navy-800);
  margin-bottom: 1.2em;
}

.post-content ul,
.post-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.4em;
}

.post-content li {
  margin-bottom: 6px;
  color: var(--navy-800);
}

.post-content blockquote {
  margin: 32px 0;
  padding: 4px 24px;
  border-left: 4px solid var(--accent);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-900);
}

.post-content code {
  background: var(--slate-100);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.92em;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color: var(--navy-900);
}

.post-content a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content hr {
  border: 0;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  margin: 48px 0;
}

.post-related {
  background: var(--paper);
  padding: 64px 0;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}

.post-related h2 {
  text-align: center;
  margin-bottom: 32px;
}

.post-related .post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  padding: 64px 0 28px;
}

.site-footer .brand-name,
.site-footer .brand-suffix {
  color: var(--white);
}

.site-footer .brand-suffix {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tag {
  margin-top: 14px;
  color: var(--slate-300);
  max-width: 320px;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.site-footer nav,
.site-footer .footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer nav a,
.site-footer .footer-grid a {
  color: var(--slate-300);
  font-size: 0.95rem;
}

.site-footer nav a:hover,
.site-footer .footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--slate-500);
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .approach-grid,
  .about-grid,
  .cta-grid,
  .faq-grid,
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 56px 0 72px;
  }

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

  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail--reverse > :first-child {
    order: 0;
  }

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

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

  .bio-portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-block;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  }

  .primary-nav a.nav-cta {
    margin-top: 10px;
    text-align: center;
    border-bottom: 0;
  }

  .primary-nav a.active:not(.nav-cta)::after {
    display: none;
  }

  .section,
  .post-related {
    padding: 64px 0;
  }

  .service-grid,
  .post-grid,
  .pricing-grid,
  .values-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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

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

  .cta-banner {
    padding: 36px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ───────── Visual polish layer ───────── */

/* Hero — bigger, more dramatic */
.hero {
  padding: 110px 0 130px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* Decorative background layer */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(28, 58, 99, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 58, 99, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 30%, transparent 75%);
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.85;
}

.hero-glow-1 {
  width: 540px;
  height: 540px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(244, 183, 64, 0.55), transparent 65%);
  animation: drift-a 14s ease-in-out infinite;
}

.hero-glow-2 {
  width: 480px;
  height: 480px;
  bottom: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(28, 58, 99, 0.4), transparent 65%);
  animation: drift-b 16s ease-in-out infinite;
}

.hero-glow-3 {
  width: 360px;
  height: 360px;
  top: 30%;
  left: 35%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.18), transparent 65%);
  animation: drift-a 18s ease-in-out infinite reverse;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -16px); }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 14px); }
}

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

/* Eyebrow accent marker */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

/* Section heading underline */
.section-head h2 {
  position: relative;
  padding-bottom: 18px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  border-radius: 2px;
}

/* Hero stats — bigger gradient numbers */
.hero-trust {
  margin-top: 10px;
}

.hero-trust strong {
  background: linear-gradient(135deg, var(--navy-900) 25%, var(--navy-700) 65%, var(--accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

/* Trust line — clean text-only credentials */
.hero-trust-line {
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: 0.02em;
  max-width: 540px;
}

.hero-trust-line span[aria-hidden] {
  color: var(--slate-300);
}

/* ── Hero visual: dashboard mockup ── */
.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-dashboard {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(380px, 100%);
  background: linear-gradient(180deg, var(--white), #fafbfd);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 70px rgba(11, 31, 58, 0.18),
    0 4px 12px rgba(11, 31, 58, 0.06);
  padding: 22px;
  z-index: 2;
  animation: float-dashboard 9s ease-in-out infinite;
}

@keyframes float-dashboard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.hero-dash-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.hero-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 194, 126, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 194, 126, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(46, 194, 126, 0.05); }
}

.hero-dash-grade {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.hero-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.hero-dash-stats > div {
  display: flex;
  flex-direction: column;
}

.hero-dash-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-dash-num small {
  font-size: 0.85rem;
  color: var(--slate-500);
  font-weight: 400;
}

.hero-dash-label {
  font-size: 0.72rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-dash-summary {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--paper);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.hero-dash-summary p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--navy-800);
  line-height: 1.5;
}

.hero-dash-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-gold {
  background: rgba(244, 183, 64, 0.16);
  color: var(--accent-deep);
  border: 1px solid rgba(244, 183, 64, 0.4);
}

/* Service icons — bigger, gradient, glowing */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow:
    0 8px 20px rgba(11, 31, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(244, 183, 64, 0.28), transparent 60%);
  pointer-events: none;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.service-detail .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.service-detail .service-icon svg {
  width: 30px;
  height: 30px;
}

/* Card hover — gold accent border bloom */
.service:hover,
.post-card:hover {
  border-color: transparent;
  box-shadow:
    0 20px 44px rgba(11, 31, 58, 0.14),
    0 0 0 1px rgba(244, 183, 64, 0.4);
}

/* Pricing featured — dramatic dark treatment */
.pricing-card.featured {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: var(--slate-200);
  border-color: transparent;
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.32);
  position: relative;
}

.pricing-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(244, 183, 64, 0.18), transparent 70%);
  border-radius: var(--radius);
  pointer-events: none;
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-price {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.pricing-card.featured > p,
.pricing-card.featured ul {
  position: relative;
  z-index: 1;
}

.pricing-card.featured > p {
  color: var(--slate-300);
}

.pricing-card.featured .pricing-price small {
  color: var(--slate-300);
}

.pricing-card.featured ul li {
  color: var(--slate-200);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured ul li::before {
  color: var(--accent);
}

.pricing-card.featured .btn-primary {
  background: var(--accent);
  color: var(--navy-900);
  position: relative;
  z-index: 1;
}

.pricing-card.featured .btn-primary:hover {
  background: var(--accent-deep);
  color: var(--navy-900);
}

/* Buttons — subtle inner highlight */
.btn-primary {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 183, 64, 0.5), transparent);
  pointer-events: none;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Page hero — dot grid */
.page-hero {
  background:
    radial-gradient(circle at 1px 1px, rgba(28, 58, 99, 0.05) 1px, transparent 0),
    radial-gradient(60% 80% at 80% 0%, rgba(244, 183, 64, 0.16), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(28, 58, 99, 0.08), transparent 60%),
    var(--paper);
  background-size: 24px 24px, 100% 100%, 100% 100%, 100% 100%;
}

/* CTA section — subtle texture */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(244, 183, 64, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 183, 64, 0.05), transparent 50%);
  pointer-events: none;
}

.cta > .container {
  position: relative;
  z-index: 1;
}

/* Logo strip — hover */
.logos-list li {
  transition: opacity 0.2s ease, color 0.2s ease;
}

.logos-list li:hover {
  opacity: 1;
  color: var(--navy-900);
}

/* Mobile tweaks for the new hero */
@media (max-width: 960px) {
  .hero {
    padding: 64px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Keep copy on top, visual below on tablets/phones */
  .hero-visual {
    order: 0;
    min-height: 360px;
    margin-top: 4px;
  }

  .hero-dashboard {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 0 56px;
  }

  /* Dashboard becomes a normal inline element on phones — no absolute */
  .hero-visual {
    min-height: auto;
    margin-top: 12px;
    padding: 0 4px;
  }

  .hero-dashboard {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    animation: none;
  }

  /* Soften the background visual on phones */
  .hero-grid-pattern {
    display: none;
  }

  .hero-glow-3 {
    display: none;
  }

  .hero-glow-1,
  .hero-glow-2 {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }

  /* Tighten the dashboard internals */
  .hero-dash-num {
    font-size: 1.25rem;
  }

  .hero-dash-label {
    font-size: 0.66rem;
  }

  .hero-dash-stats {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .hero-trust strong {
    font-size: 1.5rem;
  }

  .hero-trust-line {
    font-size: 0.78rem;
    gap: 6px 10px;
  }

  .section-head h2::after {
    width: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dashboard,
  .hero-glow-1,
  .hero-glow-2,
  .hero-glow-3,
  .hero-dash-dot {
    animation: none !important;
  }

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


