/* Aurum Tech Services — v3 (Professional / Enterprise) */
:root {
  --red: #C8102E;
  --red-dark: #A00C24;
  --red-soft: #FBE8EB;
  --ink: #0B1220;
  --ink-2: #3A4252;
  --ink-3: #6B7280;
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --bg: #FFFFFF;
  --bg-2: #F7F8FA;
  --bg-3: #F0F2F5;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.04), 0 1px 3px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 18, 32, 0.06), 0 2px 4px rgba(11, 18, 32, 0.04);
  --shadow-lg: 0 18px 48px rgba(11, 18, 32, 0.10), 0 8px 16px rgba(11, 18, 32, 0.06);

  --pad-x: clamp(20px, 4vw, 40px);
  --container: 1240px;
  --sec-y: clamp(72px, 9vw, 128px);
  --gap: 24px;
  --t-h1: clamp(40px, 4.4vw, 60px);
  --t-h2: clamp(28px, 2.8vw, 40px);
  --t-h3: clamp(20px, 1.6vw, 22px);
  --radius: 10px;
  --radius-sm: 6px;
}
[data-density="compact"] {
  --pad-x: clamp(16px, 3vw, 32px);
  --sec-y: clamp(48px, 6vw, 88px);
  --gap: 18px;
  --t-h1: clamp(34px, 3.6vw, 50px);
  --t-h2: clamp(24px, 2.4vw, 34px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.v3-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Buttons */
.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 160ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.v3-btn--sm { padding: 9px 16px; font-size: 14px; }
.v3-btn--block { width: 100%; justify-content: center; padding: 14px; }
.v3-btn--primary { background: var(--red); color: #fff; }
.v3-btn--primary:hover { background: var(--red-dark); }
.v3-btn--ghost { background: var(--bg); color: var(--ink); border-color: var(--line-2); }
.v3-btn--ghost:hover { background: var(--bg-2); border-color: var(--ink); }
.v3-btn--inv { background: #fff; color: var(--ink); }
.v3-btn--inv:hover { background: var(--bg-2); }
.v3-btn--inv-ghost { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }
.v3-btn--inv-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* Section head */
.v3-secHead { max-width: 760px; margin: 0 0 56px; }
.v3-secHead h2 {
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--ink);
}
.v3-secHead p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
}
.v3-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.v3-kicker--inv { color: #fff; }

/* Announcement bar */
.v3-ann {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.v3-ann__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.v3-ann__pill {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}
.v3-ann__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
}
.v3-ann__link:hover { border-bottom-color: #fff; }
@media (max-width: 700px) { .v3-ann__inner > span:nth-child(2) { font-size: 13px; } }

/* Nav */
.v3-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms ease;
}
.v3-nav.is-scrolled { box-shadow: var(--shadow-sm); }
.v3-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.v3-nav__brand img { height: 26px; width: auto; }
.v3-hero__brandrow { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.v3-hero__mark { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; }
.v3-nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.v3-nav__links a:hover { color: var(--red); }
.v3-nav__ctas { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.v3-nav__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.v3-nav__signin:hover { color: var(--ink); }
@media (max-width: 920px) {
  .v3-nav__links { display: none; }
  .v3-nav__signin { display: none; }
}

/* Hero */
.v3-hero { padding: clamp(56px, 8vw, 96px) 0 0; }
.v3-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 96px);
}
.v3-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.v3-hero__dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.18);
}
.v3-hero__title {
  font-size: var(--t-h1);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 24px;
  color: var(--ink);
}
.v3-accent { color: var(--red); }
.v3-hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
}
.v3-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.v3-hero__assure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 480px;
}
.v3-hero__assure > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v3-hero__assure svg { color: var(--red); flex-shrink: 0; }

/* Hero panel */
.v3-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v3-panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.v3-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
}
.v3-panel__dots { display: flex; gap: 6px; }
.v3-panel__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-2);
}
.v3-panel__dots span:first-child { background: #FF5F57; }
.v3-panel__dots span:nth-child(2) { background: #FEBC2E; }
.v3-panel__dots span:nth-child(3) { background: #28C840; }
.v3-panel__body { padding: 18px 20px; }
.v3-panel__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.v3-panel__row:last-child { border-bottom: none; }
.v3-panel__lbl { color: var(--ink-2); }
.v3-panel__val { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.v3-panel__val--ok { color: #16A34A; }
.v3-panel__chart {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.v3-panel__chart svg { width: 100%; height: 80px; display: block; }
.v3-panel__chart-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ink-3);
}
.v3-panel__up { color: #16A34A; font-weight: 600; }
.v3-panel--mini { padding: 14px 18px; }

@media (max-width: 980px) {
  .v3-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Logos */
.v3-logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 32px 0;
}
.v3-logos__t {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.v3-logos__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.v3-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  opacity: 0.7;
  transition: opacity 200ms ease;
}
.v3-logo:hover { opacity: 1; }

/* Stats */
.v3-stats { padding: clamp(48px, 6vw, 72px) 0; border-bottom: 1px solid var(--line); }
.v3-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.v3-stats__grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
  border-left: 2px solid var(--red);
}
.v3-stats__v {
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.v3-stats__v em { font-style: normal; color: var(--red); font-size: 0.6em; margin-left: 2px; }
.v3-stats__l { font-size: 14px; color: var(--ink-2); line-height: 1.4; }
@media (max-width: 800px) { .v3-stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* Solutions */
.v3-solutions { padding: var(--sec-y) 0; }
.v3-sol__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v3-sol {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 200ms ease;
}
.v3-sol:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.v3-sol__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.v3-sol h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.v3-sol p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.v3-sol ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.v3-sol ul li {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.v3-sol__link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  align-self: flex-start;
}
.v3-sol__link:hover { gap: 9px; }
@media (max-width: 980px) { .v3-sol__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .v3-sol__grid { grid-template-columns: 1fr; } }

/* Jewellery */
.v3-jewel {
  background: var(--ink);
  color: #fff;
  padding: var(--sec-y) 0;
}
.v3-jewel__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.v3-jewel__copy h2 {
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 20px;
  color: #fff;
}
.v3-jewel__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 56ch;
}
.v3-jewel__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.v3-jfeat { display: flex; gap: 12px; align-items: flex-start; }
.v3-jfeat__c {
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v3-jfeat__c svg { width: 12px; height: 12px; }
.v3-jfeat h5 { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: #fff; }
.v3-jfeat p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.65); margin: 0; }
.v3-jewel__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mock dashboard */
.v3-mock {
  background: #1a2236;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.v3-mock__head {
  background: #131a2b;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.v3-mock__tabs { display: flex; gap: 4px; }
.v3-mock__tabs span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.v3-mock__tabs span.is-active { background: var(--red); color: #fff; }
.v3-mock__time { font-size: 12px; color: rgba(255,255,255,0.55); font-family: 'JetBrains Mono', monospace; }
.v3-mock__body { padding: 8px 0; }
.v3-mock__row {
  display: grid;
  grid-template-columns: 80px 1.4fr 50px 80px 90px 80px;
  gap: 12px;
  padding: 11px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.v3-mock__row:last-child { border-bottom: none; }
.v3-mock__name { color: #fff; font-weight: 500; }
.v3-mock__num { font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.85); }
.v3-mock__pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.02em;
}
.v3-mock__pill--instock { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.v3-mock__pill--reserved { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.v3-mock__pill--atkarigar { background: rgba(168, 85, 247, 0.15); color: #C084FC; }
.v3-mock__pill--sold { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }
.v3-mock__foot {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 1000px) {
  .v3-jewel__grid { grid-template-columns: 1fr; gap: 40px; }
  .v3-jewel__feats { grid-template-columns: 1fr; }
}
/* ePlus mock — light variant with wider columns for long company names */
.v3-mock__row--eplus {
  grid-template-columns: 64px 1.3fr 56px 1.1fr 60px 92px;
  align-items: center;
}
.v3-mock__row--eplus > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v3-mock__row--eplus .v3-mock__name {
  color: #1A1410;
  font-weight: 500;
}
.v3-mock__row--eplus .v3-mock__num {
  color: #1A1410;
}
.v3-mock__row--head {
  font-size: 11px;
  font-weight: 600;
  color: #6B5F52;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #E5DFD7;
}

@media (max-width: 700px) {
  .v3-mock__row { grid-template-columns: 70px 1fr 70px; font-size: 12px; }
  .v3-mock__row > span:nth-child(3),
  .v3-mock__row > span:nth-child(5) { display: none; }
  .v3-mock__row--eplus { grid-template-columns: 56px 1fr 80px; }
  .v3-mock__row--eplus > span:nth-child(3),
  .v3-mock__row--eplus > span:nth-child(4),
  .v3-mock__row--eplus > span:nth-child(5) { display: none; }
}

/* Industries */
.v3-ind { padding: var(--sec-y) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v3-ind__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v3-ind__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.v3-ind__num {
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--red);
  letter-spacing: 0.08em;
}
.v3-ind__card h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 12px 0 8px;
  color: var(--ink);
}
.v3-ind__card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .v3-ind__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .v3-ind__grid { grid-template-columns: 1fr; } }

/* Approach */
.v3-app { padding: var(--sec-y) 0; }
.v3-app__rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.v3-step {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.v3-step:last-child { border-right: none; padding-right: 0; }
.v3-step__num {
  font-size: 13px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.v3-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.v3-step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .v3-app__rail { grid-template-columns: 1fr 1fr; }
  .v3-step { padding: 24px; border-bottom: 1px solid var(--line); }
  .v3-step:nth-child(2n) { border-right: none; }
}

/* Cases */
.v3-cases { padding: var(--sec-y) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v3-case__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v3-case {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.v3-case__head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.v3-case__industry {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.v3-case__metric {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.v3-case h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
  grid-column: 1;
}
.v3-case p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  grid-column: 1;
  max-width: 60ch;
}
.v3-case__stats {
  grid-column: 2;
  grid-row: 2 / span 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.v3-case__stats > div { display: flex; flex-direction: column; }
.v3-case__stats span:first-child {
  font-size: 22px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: -0.02em;
}
.v3-case__stats span:last-child {
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.v3-case__link {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
}
.v3-case__link:hover { gap: 9px; }
@media (max-width: 800px) {
  .v3-case { grid-template-columns: 1fr; padding: 24px; }
  .v3-case__stats { grid-column: 1; grid-row: auto; padding-left: 0; padding-top: 20px; border-left: none; border-top: 1px solid var(--line); flex-direction: row; gap: 24px; flex-wrap: wrap; }
}

/* Testimonial */
.v3-test {
  padding: var(--sec-y) 0;
  background: var(--red);
  color: #fff;
}
.v3-test__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.v3-test blockquote {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 16px 0 32px;
  color: #fff;
}
.v3-test footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.v3-test__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}
.v3-test footer strong { display: block; font-weight: 600; font-size: 15px; }
.v3-test footer span { display: block; font-size: 14px; color: rgba(255,255,255,0.75); }

/* About */
.v3-about { padding: var(--sec-y) 0; }
.v3-about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.v3-about h2 {
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 20px;
  color: var(--ink);
}
.v3-about p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 60ch;
}
.v3-about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.v3-about__values > div { display: flex; flex-direction: column; gap: 4px; }
.v3-about__values b { font-size: 15px; font-weight: 600; color: var(--ink); }
.v3-about__values span { font-size: 14px; color: var(--ink-2); }
.v3-about__side { display: flex; flex-direction: column; gap: 16px; }
.v3-about__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.v3-about__card h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 0 0 10px;
}
.v3-about__card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }
@media (max-width: 980px) {
  .v3-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .v3-about__values { grid-template-columns: 1fr; }
}

/* FAQ */
.v3-faq { padding: var(--sec-y) 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.v3-faq__list {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.v3-faq__row {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 150ms ease;
}
.v3-faq__row:last-child { border-bottom: none; }
.v3-faq__row:hover { background: var(--bg-2); }
.v3-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.v3-faq__t {
  font-size: 22px;
  color: var(--red);
  font-weight: 400;
  width: 24px;
  text-align: center;
}
.v3-faq__a {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 80ch;
}

/* CTA banner */
.v3-cta { padding: var(--sec-y) 0; }
.v3-cta__inner {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.v3-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(200, 16, 46, 0.25), transparent 60%);
  pointer-events: none;
}
.v3-cta h2 {
  position: relative;
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fff;
}
.v3-cta p { position: relative; font-size: 16px; color: rgba(255,255,255,0.72); margin: 0; max-width: 50ch; }
.v3-cta__ctas { position: relative; display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) {
  .v3-cta__inner { grid-template-columns: 1fr; }
  .v3-cta__ctas { justify-content: flex-start; }
}

/* Contact */
.v3-contact { padding: var(--sec-y) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v3-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.v3-contact__info h2 {
  font-size: var(--t-h2);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.v3-contact__info > p { font-size: 16px; color: var(--ink-2); margin: 0 0 32px; max-width: 50ch; }
.v3-contact__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v3-contact__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.v3-contact__icon {
  width: 38px; height: 38px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.v3-contact__list li > div { display: flex; flex-direction: column; gap: 2px; }
.v3-contact__list li > div > span:first-child {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.v3-contact__list li a { font-size: 15px; color: var(--ink); font-weight: 500; }
.v3-contact__list li a:hover { color: var(--red); }
.v3-contact__list li > div > span:last-child:not(:first-child) { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.v3-contact__hours {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3-contact__hours span:first-child {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.v3-contact__hours span:last-child { font-size: 14px; color: var(--ink-2); }

.v3-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v3-form h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.v3-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v3-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.v3-form input,
.v3-form select,
.v3-form textarea {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: all 150ms ease;
}
.v3-form input:focus,
.v3-form select:focus,
.v3-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.v3-form textarea { resize: vertical; }
.v3-form__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--ink-2);
  font-size: 13px;
}
.v3-form__check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.v3-form__note {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
}
@media (max-width: 980px) {
  .v3-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .v3-form__row { grid-template-columns: 1fr; }
}

/* Footer */
.v3-foot { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 24px; }
.v3-foot__top {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.v3-foot__brand img { height: 28px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.v3-foot__brand p { font-size: 14px; line-height: 1.55; max-width: 36ch; margin: 0 0 20px; color: rgba(255,255,255,0.6); }
.v3-foot__social { display: flex; gap: 8px; }
.v3-foot__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 150ms ease;
}
.v3-foot__social a:hover { background: var(--red); border-color: var(--red); }
.v3-foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.v3-foot__cols h6 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 18px;
}
.v3-foot__cols a, .v3-foot__cols span {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  transition: color 150ms ease;
}
.v3-foot__cols a:hover { color: #fff; }
.v3-foot__bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.v3-foot__legal { display: flex; gap: 24px; }
.v3-foot__legal a { color: rgba(255,255,255,0.5); }
.v3-foot__legal a:hover { color: #fff; }
@media (max-width: 900px) {
  .v3-foot__top { grid-template-columns: 1fr; gap: 40px; }
  .v3-foot__cols { grid-template-columns: 1fr 1fr; }
  .v3-foot__bot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ePlus deep-dive responsive */
@media (max-width: 900px) {
  .v3-eplus__grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}
