/* =================================================================
   O'LIV — Design System v2
   New palette: deep warm-black + amber + coral
   3D hero + scroll animations + no emojis
   ================================================================= */

/* ===== OVERRIDE COLOR PALETTE ===== */
:root {
  --bg:        #0c0b09;
  --bg-soft:   #141210;
  --bg-alt:    #1a1714;
  --text:      #f5f0e8;
  --muted:     #a89d8f;
  --brand:     #c9922a;       /* amber / saffron */
  --brand-dark:#a57520;
  --accent:    #d64f2e;       /* coral-rust */
  --line:      rgba(245,240,232,0.10);
  --surface:   rgba(245,240,232,0.05);
  --ok:        #6ee7b7;
  --bad:       #fecaca;
  --font:      "Outfit", system-ui, sans-serif;
  --display:   "Fraunces", Georgia, serif;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 70% -10%, rgba(201,146,42,.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 80%,  rgba(214,79,46,.10),  transparent 55%);
}

/* ===== SCROLL PROGRESS BAR ===== */
#oliv-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width .1s linear;
  pointer-events: none;
}

/* ===== HERO OVERRIDE — REMOVE VIDEO CLASSES ===== */
.page-home .hero.hero--compact.hero--video {
  min-height: 100svh;
  padding: 0;
  align-items: stretch;
  background: none;
}
/* Hide old video/overlay */
.hero__video, .hero__video-overlay { display: none !important; }
/* Hide old badge */
.oliv-hero-badge { display: none !important; }

/* ===== 3D SCROLL HERO ===== */
.hero-3d {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 65% 30%, rgba(201,146,42,.13), transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 70%, rgba(214,79,46,.09), transparent 55%),
    var(--bg);
  padding: 100px 0 60px;
}
.hero-3d__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-3d__glyph {
  position: absolute;
  font-family: var(--display);
  font-size: min(52vw, 700px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,240,232,.06);
  right: -3%; top: 5%;
  z-index: 0; pointer-events: none; user-select: none;
}

/* Left: text content */
.hero-3d__text {
  position: relative; z-index: 2;
  padding-inline-start: max(5vw, 48px);
  padding-inline-end: 2rem;
  max-width: 640px;
  justify-self: center;
  align-self: center;
}
.hero-3d__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 22px;
  animation: h3d-enter .7s .2s both ease;
}
.hero-3d__eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--brand);
}
.hero-3d h1 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(52px, 10vw, 130px);
  line-height: .92;
  letter-spacing: -.02em;
  animation: h3d-enter .9s .4s both cubic-bezier(.22,1,.36,1);
}
.hero-3d h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 20%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-3d__sub {
  font-family: var(--display);
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: .1em; color: var(--muted);
  margin-bottom: 22px;
  animation: h3d-enter .7s .6s both ease;
}
.hero-3d__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text); max-width: 460px;
  line-height: 1.6; margin-bottom: 36px;
  animation: h3d-enter .7s .75s both ease;
}
.hero-3d__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: h3d-enter .7s .9s both ease;
}

/* Right: 3D image scene */
.hero-3d__scene {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  perspective: 1200px;
}
.hero-3d__card-wrap {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .1s linear;
  animation: h3d-card-in 1.1s .3s both cubic-bezier(.22,1,.36,1);
}
.hero-3d__card {
  width: min(420px, 44vw);
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(245,240,232,.12);
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(201,146,42,.15);
  transform-style: preserve-3d;
}
.hero-3d__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.15);
  display: block;
  transform: scale(1.04);
  transition: transform .6s ease;
}
.hero-3d__card:hover img { transform: scale(1.08); }

/* Decorative floating chips */
.hero-3d__chip {
  position: absolute;
  background: rgba(12,11,9,.82);
  border: 1px solid rgba(201,146,42,.3);
  backdrop-filter: blur(14px);
  border-radius: .9rem;
  padding: 12px 18px;
  color: var(--text);
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  pointer-events: none;
}
.hero-3d__chip .chip-val {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-3d__chip--tl {
  top: -22px; left: -30px;
  animation: h3d-float 6s 0s ease-in-out infinite;
}
.hero-3d__chip--br {
  bottom: -18px; right: -24px;
  animation: h3d-float 6s 2s ease-in-out infinite;
}
.hero-3d__chip--tr {
  top: 30%; right: -36px;
  animation: h3d-float 6s 1s ease-in-out infinite;
}

/* Glowing orb behind card */
.hero-3d__orb {
  position: absolute; inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,42,.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: orb-pulse 5s ease-in-out infinite;
}

@keyframes h3d-enter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes h3d-card-in {
  from { opacity: 0; transform: perspective(1200px) rotateY(25deg) rotateX(-8deg) translateZ(-60px); }
  to   { opacity: 1; transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateZ(0px); }
}
@keyframes h3d-float {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}
@keyframes orb-pulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.06); }
}

/* Scroll line */
.hero-3d__scroll {
  position: absolute; z-index: 3;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: grid; justify-items: center; gap: .4rem;
  color: rgba(245,240,232,.5);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  animation: h3d-enter 1s .9s both ease;
}
.hero-3d__scroll-line {
  width: 1px; height: 2.5rem;
  background: linear-gradient(180deg, var(--brand), transparent);
  position: relative; overflow: hidden;
}
.hero-3d__scroll-line::after {
  content: ''; position: absolute; inset-inline: 0; top: -100%; height: 100%;
  background: rgba(255,255,255,.8);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse { 0% { top: -100%; } 100% { top: 100%; } }

@media (max-width: 880px) {
  .hero-3d {
    grid-template-columns: 1fr;
    padding: 90px 0 50px;
    min-height: auto;
  }
  .hero-3d__text {
    padding-inline-start: max(1.5rem, env(safe-area-inset-left, 0));
    padding-inline-end: max(1.5rem, env(safe-area-inset-right, 0));
    max-width: 100%;
    justify-self: stretch;
    text-align: center;
  }
  .hero-3d__eyebrow::before { display: none; }
  .hero-3d__lead { margin-inline: auto; }
  .hero-3d__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero-3d__scene { display: none; }
  .hero-3d__scroll { display: none; }
}

/* ===== MARQUEE STRIP ===== */
@keyframes oliv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.oliv-marquee-strip {
  overflow: hidden;
  padding: 16px 0;
  background: var(--brand);
  font-family: var(--display);
  font-size: clamp(13px, 1.8vw, 18px);
  letter-spacing: .07em;
  color: var(--bg);
  white-space: nowrap;
}
.oliv-marquee-inner {
  display: inline-block;
  animation: oliv-marquee 26s linear infinite;
}
.oliv-marquee-inner span { padding: 0 44px; }
.oliv-marquee-inner span::before { content: '— '; }

/* ===== STATS STRIP ===== */
.oliv-stats-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.oliv-stats-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.oliv-stat { text-align: center; padding: 10px 24px; position: relative; }
.oliv-stat::after {
  content: ''; position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line);
}
.oliv-stat:last-child::after { display: none; }
.oliv-stat__num {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1;
  color: var(--brand);
}
.oliv-stat__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px;
}

/* ===== EYEBROW ===== */
.oliv-eyebrow {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px;
}

/* ===== SECTION HEAD ===== */
.section-head { margin-bottom: 2.5rem; }
.page-home .section-head h2::after {
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

/* ===== SERVICE CARDS WITH IMAGES ===== */
.service-card--v2 {
  position: relative; overflow: hidden;
  padding: 0; min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 1rem; border: 1px solid var(--line);
}
.service-card--v2 .svc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.4) saturate(1.1);
  transition: transform .6s cubic-bezier(.22,1,.36,1), filter .4s;
}
.service-card--v2:hover .svc-img { transform: scale(1.06); filter: brightness(.5); }
.service-card--v2 .svc-body {
  position: relative; z-index: 1;
  padding: 1.2rem 1.3rem 1.5rem;
  background: linear-gradient(to top, rgba(12,11,9,.97) 0%, rgba(12,11,9,.4) 70%, transparent 100%);
}
.service-card--v2 .svc-icon {
  display: inline-block;
  width: 32px; height: 32px; margin-bottom: .7rem;
}
.service-card--v2 .svc-body h3 { margin: 0 0 .3rem; font-family: var(--display); font-size: 1.4rem; color: #fff; }
.service-card--v2 .svc-body p { margin: 0; font-size: .88rem; color: rgba(168,157,143,.9); line-height: 1.4; }

/* Service icons (SVG inline via CSS mask) */
.svc-icon-rest { background: var(--brand); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M3 11l19-9-9 19-2-8-8-2z'/%3E%3C/svg%3E"); mask-size: contain; mask-repeat: no-repeat; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11l19-9-9 19-2-8-8-2z'/%3E%3C/svg%3E"); -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; }

/* ===== JOIN CARDS ===== */
.join-v2 { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 680px) { .join-v2 { grid-template-columns: 1fr; } }
.join-card-v2 {
  position: relative; overflow: hidden;
  border-radius: 1rem; border: 1px solid var(--line);
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none; color: inherit;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.join-card-v2:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.join-card-v2 .jc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.3) saturate(1.1);
  transition: transform .5s cubic-bezier(.22,1,.36,1), filter .4s;
}
.join-card-v2:hover .jc-img { transform: scale(1.05); filter: brightness(.4); }
.join-card-v2 .jc-body {
  position: relative; z-index: 1;
  padding: 1.5rem 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(12,11,9,.98) 0%, rgba(12,11,9,.45) 60%, transparent 100%);
}
.join-card-v2 .jc-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: .5rem; display: block;
}
.join-card-v2 h3 { margin: 0 0 .45rem; font-family: var(--display); font-size: 1.7rem; color: #fff; line-height: 1.05; }
.join-card-v2 p { margin: 0 0 1rem; color: rgba(168,157,143,.85); font-size: .9rem; line-height: 1.45; }
.join-card-v2 .jc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: .65rem;
  font-weight: 700; font-size: .88rem; transition: background .2s;
}
.join-card-v2.driver .jc-cta { background: var(--brand); color: var(--bg); }
.join-card-v2.driver .jc-cta:hover { background: var(--brand-dark); }
.join-card-v2.commerce .jc-cta { background: var(--accent); color: #fff; }
.join-card-v2.commerce .jc-cta:hover { background: #be3f22; }

/* ===== ROLE CARDS V2 ===== */
.roles-v2 { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 680px) { .roles-v2 { grid-template-columns: 1fr; } }
.role-link-v2 {
  display: flex; flex-direction: column; gap: .4rem;
  padding: 1.5rem 1.4rem; border: 1px solid var(--line);
  border-radius: 1rem; background: var(--surface);
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.role-link-v2::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; opacity: 0; transition: opacity .3s;
}
.role-link-v2.client::before { background: linear-gradient(90deg, var(--brand), var(--brand-dark)); }
.role-link-v2.merchant::before { background: linear-gradient(90deg, var(--accent), #f0855a); }
.role-link-v2.admin::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.role-link-v2:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.25); border-color: rgba(201,146,42,.35); }
.role-link-v2:hover::before { opacity: 1; }
.role-link-v2 .rl-icon {
  width: 36px; height: 36px; margin-bottom: .4rem;
  border-radius: .7rem;
  background: rgba(201,146,42,.12);
  border: 1px solid rgba(201,146,42,.2);
  display: flex; align-items: center; justify-content: center;
}
.role-link-v2 .rl-icon svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 1.8; }
.role-link-v2 .rl-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.role-link-v2 strong { font-family: var(--display); font-size: 1.35rem; color: var(--text); display: block; margin-bottom: .2rem; }
.role-link-v2 p { margin: 0; font-size: .87rem; color: var(--muted); line-height: 1.4; flex: 1; }
.role-link-v2 .rl-arrow { font-size: 1rem; color: var(--brand); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; align-self: flex-end; }
.role-link-v2:hover .rl-arrow { opacity: 1; transform: translateX(0); }

/* ===== PHOTO STRIP ===== */
.oliv-photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; height: 260px; overflow: hidden; }
@media (max-width: 680px) { .oliv-photo-strip { height: 160px; } }
.oliv-photo-strip__item { overflow: hidden; }
.oliv-photo-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.75) saturate(1.1); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.oliv-photo-strip__item:hover img { transform: scale(1.06); }

/* ===== ACCOUNT CARDS ===== */
.account-card-v2 {
  padding: 1.1rem 1.2rem; border-radius: .95rem;
  border: 1px solid var(--line); background: rgba(245,240,232,.04);
  transition: transform .2s, border-color .2s, background .2s; position: relative; overflow: hidden;
}
.account-card-v2::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent)); opacity: 0; transition: opacity .2s;
}
.account-card-v2:hover { transform: translateY(-3px); border-color: rgba(201,146,42,.4); }
.account-card-v2:hover::before { opacity: 1; }
.account-card-v2 h3 { margin: 0 0 .4rem; font-family: var(--display); font-size: 1.05rem; }
.account-card-v2 p { margin: 0; color: var(--muted); font-size: .82rem; }
.account-card-v2 code { color: #e8dcc8; font-size: .78rem; word-break: break-all; }

/* ===== STAGGER REVEALS ===== */
[data-reveal-left] { opacity: 0; transform: translateX(-32px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal-left].is-visible { opacity: 1; transform: translateX(0); }
[data-reveal-right] { opacity: 0; transform: translateX(32px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal-right].is-visible { opacity: 1; transform: translateX(0); }
[data-reveal-scale] { opacity: 0; transform: scale(.92); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal-scale].is-visible { opacity: 1; transform: scale(1); }

/* ===== BACK TO TOP ===== */
#oliv-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: var(--bg); border: none;
  cursor: pointer; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(201,146,42,.35);
}
#oliv-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#oliv-top:hover { background: var(--brand-dark); }

/* ===== BTN OVERRIDE (brand colors) ===== */
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #be3f22; }
.btn-brand { background: var(--brand); color: var(--bg); }
.btn-brand:hover { background: var(--brand-dark); }

/* hero gradient text */
.page-home .hero h1 {
  background: linear-gradient(120deg, var(--text) 0%, #e8c878 50%, var(--accent) 120%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== FOOTER FIXES ===== */
.site-footer {
  background:
    linear-gradient(180deg, rgba(12,11,9,0) 0%, rgba(10,9,7,.8) 30%, rgba(8,7,5,.96) 100%);
}
.site-footer__panel {
  background:
    linear-gradient(145deg, rgba(245,240,232,.07) 0%, rgba(245,240,232,.02) 48%, rgba(201,146,42,.1) 100%);
  border-color: rgba(201,146,42,.18);
}
.site-footer__title-brand {
  background: linear-gradient(120deg, var(--text) 0%, #e8c878 45%, var(--accent) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  font-size: clamp(2.8rem, 6vw, 4rem);
}
.site-footer__eyebrow { color: var(--brand) !important; }
.site-footer__lead { color: rgba(245,240,232,.88); }
.site-footer__tagline { color: var(--muted); }
.site-footer__place-pill {
  border-color: rgba(201,146,42,.3);
  background: rgba(201,146,42,.12);
  color: #e8c878;
}
.site-footer__place-dot { background: var(--brand); box-shadow: 0 0 0 4px rgba(201,146,42,.18); }
.footer-social {
  background: rgba(12,11,9,.5);
  border-color: rgba(245,240,232,.1);
}
.footer-social:hover { box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.footer-social--facebook:hover { border-color: rgba(66,133,244,.5); background: linear-gradient(135deg, rgba(24,119,242,.2), rgba(12,11,9,.6)); }
.footer-social--instagram:hover { border-color: rgba(214,79,46,.5); background: linear-gradient(135deg, rgba(214,79,46,.22), rgba(12,11,9,.6)); }
.site-footer__nav a { color: rgba(168,157,143,.88); }
.site-footer__nav a:hover { color: var(--text); }
.site-footer__nav a::after { background: linear-gradient(90deg, var(--brand), transparent); }
.site-footer__legal { color: rgba(168,157,143,.6); }
.site-footer__glow {
  background:
    radial-gradient(circle, rgba(214,79,46,.18) 0%, transparent 55%),
    radial-gradient(circle at 25% 40%, rgba(201,146,42,.25) 0%, transparent 50%);
}

/* Nav brand */
.brand { color: var(--text); }

/* Catalog card hover */
.page-home .catalog-card:hover { border-color: rgba(201,146,42,.4); box-shadow: 0 4px 24px rgba(201,146,42,.14); }

/* Login banner */
.page-home .login-banner { border-color: rgba(201,146,42,.4) !important; }

/* ===== DIVIDER ===== */
.oliv-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent); border: 0; margin: 0; }

/* ===== SERVICE SVG ICONS ===== */
.svc-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(201,146,42,.15);
  border: 1px solid rgba(201,146,42,.25);
  border-radius: .65rem; margin-bottom: .7rem;
}
.svc-svg { width: 18px; height: 18px; stroke: var(--brand); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .oliv-marquee-inner { animation: none; }
  .hero-3d__chip, .hero-3d__orb { animation: none; }
  .hero-3d__card-wrap { animation: none; }
  [data-reveal-left],[data-reveal-right],[data-reveal-scale] { opacity: 1; transform: none; transition: none; }
  .hero-3d__scroll-line::after { animation: none; }
}
