/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg: #f4f2ed;
  --bg-card: #ffffff;
  --bg-dark: #0e2e45;
  --bg-dark2: #162e4a;
  --ink: #0f1f33;
  --ink-mid: #2e4462;
  --ink-light: #5a7291;
  --ink-dim: #8ba0b8;
  --sapphire: #0b4f8a;
  --sapphire-l: #1a6ab5;
  --orange: #d4500a;
  --orange-l: #e8620a;
  --sand: #e8e4da;
  --sand-dark: #d5d0c4;
  --rule: #d8d3c8;
  --shadow: 0 4px 24px rgba(15, 31, 51, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 31, 51, 0.14);
  --radius: 10px;
  --nav-height: 76px;
}

/* ── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Frank Ruhl Libre", serif;
  line-height: 1.15;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--sapphire);
}

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

a:hover {
  text-decoration: underline;
}

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

p {
  color: var(--ink-light);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.34s;
}

.d4 {
  animation-delay: 0.48s;
}

.d5 {
  animation-delay: 0.62s;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.ready {
  opacity: 0;
  transform: translateY(20px);
}

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

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  background: rgba(244, 242, 237, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
  height: var(--nav-height);
}

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

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

.nav-logo img {
  position: relative;
  top: 2px;
}

.nav-wordmark {
  font-family: "Figtree", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-wordmark span {
  color: var(--sapphire);
}

.nav-byline {
  font-family: "Figtree", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sapphire);
  white-space: nowrap;
  border-left: 1.5px solid var(--rule);
  padding-left: 12px;
}

.nav-sub {
  font-family: "Figtree", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 2px;
  display: block;
}

a.nav-logo:hover {
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.btn-nav {
  padding: 9px 22px;
  background: var(--orange);
  color: #fff !important;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-nav:hover {
  background: var(--orange-l);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: var(--orange);
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 80, 10, 0.28);
  text-decoration: none;
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink-mid);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--sapphire);
  color: var(--sapphire);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
}

.btn-sapphire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--sapphire);
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}

.btn-sapphire:hover {
  background: var(--sapphire-l);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* ── SECTION UTILITIES ──────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sapphire);
  display: block;
}

.section-heading {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 14px;
}

.section-dark .section-heading {
  color: #fff;
}

.section-dark .eyebrow {
  color: #7baaff;
}

.section-dark .eyebrow::before {
  background: #7baaff;
}

.section-sub {
  font-size: 0.98rem;
  color: var(--ink-light);
  max-width: 540px;
  line-height: 1.8;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered .eyebrow::before {
  display: none;
}

.centered .section-sub {
  margin: 0 auto;
}

.centered .section-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--sapphire);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-dark.centered .section-heading::after {
  background: #7baaff;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 72px;
  position: relative;
}

/* Subtle dot grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.065) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

/* Warm glow bottom right */
.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(11, 79, 138, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
}

.hero-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(75, 139, 255, 0.15);
  border: 1px solid rgba(75, 139, 255, 0.3);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 24px;
}

/*.hero h1{font-size:clamp(2.8rem,4.6vw,4.2rem);color:#fff;margin-bottom:20px;line-height:1.1;}*/
.hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero h1 em {
  color: #ffba3b;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Clarity card */
.hero-clarity-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-clarity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--orange),
    rgba(255, 186, 59, 0.6),
    transparent
  );
}

.clarity-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(212, 80, 10, 0.2);
  border: 1px solid rgba(212, 80, 10, 0.35);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffba3b;
  margin-bottom: 22px;
}

.hero-clarity-name {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero-clarity-tagline {
  font-family: "Figtree", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  font-style: italic;
}

.clarity-stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clarity-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s;
}

.clarity-stat-item:hover {
  background: rgba(255, 186, 59, 0.06);
  border-color: rgba(255, 186, 59, 0.2);
}

.csi-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(75, 139, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.clarity-stat-item:hover .csi-icon {
  background: rgba(255, 186, 59, 0.2);
}

.csi-icon svg {
  width: 16px;
  height: 16px;
  color: #7baaff;
  transition: color 0.2s;
}

.clarity-stat-item:hover .csi-icon svg {
  color: #ffba3b;
}

.csi-val {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1;
  transition: color 0.2s;
}

.clarity-stat-item:hover .csi-val {
  color: #ffba3b;
}

.csi-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

.hero-clarity-cta {
  margin-top: 24px;
}

/* Card header: logo left, thumbnail top-right */
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.card-header-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-sub {
  /*  font-size: 1.05rem;*/
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.85;
}

.card-thumbnail {
  flex-shrink: 0;
  width: 180px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(6.5deg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
  display: block;
}

.card-thumbnail:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.card-thumbnail img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ── CLARITY SPOTLIGHT ──────────────────────────────── */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.sf-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.sf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sapphire), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.sf-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 79, 138, 0.2);
}

.sf-card:hover::before {
  opacity: 1;
}

.sf-num {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 2.4rem;
  color: rgba(11, 79, 138, 0.1);
  line-height: 1;
  margin-bottom: 4px;
}

.sf-card h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.sf-card p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--ink-light);
}

.sf-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  background: rgba(11, 79, 138, 0.08);
  border: 1px solid rgba(11, 79, 138, 0.15);
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire);
}

/* Right side callout box */
.spotlight-callout {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.spotlight-callout::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    ellipse,
    rgba(11, 79, 138, 0.4) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.spotlight-callout-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-callout-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #7baaff;
  display: block;
}

.spotlight-callout h3 {
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.spotlight-callout .big-number {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.spotlight-callout .big-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.spotlight-callout-quote-left {
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
  padding-right: 44px;
  margin: 28px 0;
}

.spotlight-callout-quote-right {
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  border-right: 3px solid var(--orange);
  padding-right: 22px;
  padding-left: 44px;
  margin: 28px 0;
  text-align: right;
}

.callout-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.callout-list li::before {
  content: "✓";
  color: #ffba3b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SERVICES ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(212, 80, 10, 0.3));
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 79, 138, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(11, 79, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sapphire);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.865rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sapphire);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
  text-decoration: none;
}

/* Clarity featured service card */
.service-card.clarity-featured {
  border: 2px solid var(--sapphire);
  background: rgba(11, 79, 138, 0.03);
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 44px;
}

.service-card.clarity-featured::after {
  display: none;
}

.service-card.clarity-featured:hover {
  transform: translateY(-3px);
}

.clarity-feat-right {
  border-left: 1px solid var(--rule);
  padding-left: 40px;
}

.clarity-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.clarity-pill {
  padding: 6px 14px;
  background: rgba(11, 79, 138, 0.08);
  border: 1px solid rgba(11, 79, 138, 0.18);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sapphire);
  letter-spacing: 0.03em;
}

/* ── ABOUT / WHY VIDIA ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}

.about-quote {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: 22px;
  margin: 28px 0;
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 14px;
}

.trust-card:last-child {
  margin-bottom: 0;
}

.trust-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7baaff;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(75, 139, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: #7baaff;
}

/* Veeva badge */
.veeva-badge-wrap {
  margin-top: 32px;
}

.veeva-badge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.veeva-hex {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.veeva-hex-badge {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #f5921e, #e8720a);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veeva-hex-badge span {
  font-size: 0.42rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.veeva-hex-text div:first-child {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.veeva-hex-text div:last-child {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--ink-light);
}

.promise-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Figtree", sans-serif;
  font-size: 0.875rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sapphire);
  background: #fff;
}

select option {
  background: #fff;
  color: var(--ink);
}

select:has(option[value=""]:checked) {
  color: #757575;
}

textarea {
  resize: vertical;
  min-height: 88px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--orange-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 80, 10, 0.28);
}

.form-fine {
  font-size: 0.7rem;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-size: 1.8rem;
  color: var(--sapphire);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--ink-light);
}

/* ── RULE LINES ─────────────────────────────────────── */
.rule-line {
  height: 1px;
  background: var(--rule);
}

.rule-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 36px 0;
  background: var(--bg-dark);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid,
  .spotlight-grid,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-clarity-card {
    display: none;
  }

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

  .service-card.clarity-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .clarity-feat-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 28px;
  }

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

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.clarity-featured {
    grid-column: span 1;
  }

  .spotlight-feature-grid {
    grid-template-columns: 1fr;
  }
}
