/* Orvix V26 — World-Class Commercial Website */

:root{
  --ox-ink:#101828;
  --ox-muted:#667085;
  --ox-soft:#F8FAFC;
  --ox-cream:#F7F4EF;
  --ox-warm:#FFFCF7;
  --ox-line:rgba(16,24,40,.10);
  --ox-navy:#07111F;
  --ox-navy2:#111827;
  --ox-burgundy:#7A1230;
  --ox-burgundy2:#A41948;
  --ox-gold:#C9A24E;
  --ox-gold2:#B0824F;
  --ox-green:#067647;
  --ox-shadow:0 24px 80px rgba(15,23,42,.11);
  --ox-radius:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.orvix-commercial{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ox-ink);
  background:var(--ox-cream);
  text-rendering:optimizeLegibility;
}
body.orvix-commercial a{text-decoration:none;color:inherit}
body.orvix-commercial img{max-width:100%;display:block}

.ox-page{overflow:hidden}
.ox-container{width:min(1200px,calc(100% - 42px));margin:0 auto}
.ox-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(201,162,78,.28);
  color:var(--ox-burgundy);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.13em;
}
.ox-eyebrow.dark{background:rgba(244,231,201,.96);border-color:transparent}

.ox-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:12px 18px;
  border-radius:16px;
  font-size:14px;
  line-height:1;
  font-weight:950;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor:pointer;
  white-space:nowrap;
}
.ox-btn:hover{transform:translateY(-2px)}
.ox-btn.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--ox-burgundy),var(--ox-burgundy2));
  box-shadow:0 16px 34px rgba(122,18,48,.20);
}
.ox-btn.secondary{
  color:var(--ox-ink);
  background:#fff;
  border-color:rgba(16,24,40,.12);
  box-shadow:0 10px 28px rgba(15,23,42,.055);
}
.ox-btn.ghost{
  color:#fff;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}

.ox-nav{
  position:sticky;
  top:0;
  z-index:90;
  border-bottom:1px solid rgba(16,24,40,.08);
  background:rgba(247,244,239,.88);
  backdrop-filter:blur(18px);
}
.ox-nav-inner{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.ox-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.ox-brand-mark{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:950;
  letter-spacing:-.08em;
  background:
    radial-gradient(circle at 72% 18%,rgba(201,162,78,.68),transparent 34%),
    linear-gradient(135deg,var(--ox-navy),var(--ox-burgundy));
  box-shadow:0 12px 28px rgba(15,23,42,.16);
}
.ox-brand-text strong{
  display:block;
  color:var(--ox-ink);
  font-size:18px;
  letter-spacing:-.04em;
}
.ox-brand-text span{
  display:block;
  margin-top:2px;
  color:var(--ox-muted);
  font-size:12px;
  font-weight:800;
}
.ox-nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:#344054;
  font-size:14px;
  font-weight:850;
}
.ox-nav-links a:hover{color:var(--ox-burgundy)}
.ox-nav-actions{display:flex;align-items:center;gap:10px}
.ox-mobile-toggle{
  display:none;
  width:46px;height:46px;
  border:1px solid var(--ox-line);
  background:#fff;
  border-radius:15px;
  font-size:20px;
  color:var(--ox-ink);
}

/* Hero */
.ox-hero{
  position:relative;
  padding:78px 0 52px;
}
.ox-hero:before{
  content:"";
  position:absolute;
  inset:-160px -10% auto;
  height:850px;
  pointer-events:none;
  background:
    radial-gradient(circle at 78% 8%,rgba(201,162,78,.30),transparent 30%),
    radial-gradient(circle at 8% 40%,rgba(122,18,48,.13),transparent 28%),
    radial-gradient(circle at 50% 80%,rgba(255,255,255,.55),transparent 45%);
}
.ox-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  gap:48px;
  align-items:center;
}
.ox-hero h1{
  margin:18px 0 18px;
  color:var(--ox-ink);
  font-size:clamp(46px,6vw,88px);
  line-height:.93;
  letter-spacing:-.078em;
  font-weight:950;
}
.ox-gradient-text{
  background:linear-gradient(135deg,var(--ox-burgundy),var(--ox-gold2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.ox-hero-copy{
  margin:0;
  max-width:720px;
  color:#475467;
  font-size:18px;
  line-height:1.78;
}
.ox-hero-cta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.ox-hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  color:var(--ox-muted);
  font-size:13px;
  font-weight:800;
}
.ox-hero-note i{
  width:9px;height:9px;border-radius:99px;background:var(--ox-green);
  box-shadow:0 0 0 5px rgba(6,118,71,.12);
}
.ox-proof-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}
.ox-proof{
  padding:18px;
  border-radius:23px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 16px 44px rgba(15,23,42,.06);
}
.ox-proof strong{
  display:block;
  font-size:30px;
  color:var(--ox-ink);
  line-height:1;
  letter-spacing:-.055em;
}
.ox-proof span{
  display:block;
  margin-top:8px;
  color:var(--ox-muted);
  font-size:13px;
  line-height:1.45;
  font-weight:800;
}

/* Product mockup */
.ox-product-shell{
  position:relative;
  border-radius:36px;
  padding:18px;
  background:linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,252,247,.68));
  border:1px solid rgba(255,255,255,.74);
  box-shadow:var(--ox-shadow);
}
.ox-product-window{
  min-height:540px;
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 20px 60px rgba(15,23,42,.11);
}
.ox-window-top{
  height:54px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid rgba(16,24,40,.08);
  background:#fff;
}
.ox-dot{width:11px;height:11px;border-radius:99px;background:#D0D5DD}
.ox-window-body{display:grid;grid-template-columns:150px 1fr;min-height:486px}
.ox-window-sidebar{background:#07111F;padding:18px}
.ox-mini-brand{
  height:50px;
  border-radius:17px;
  margin-bottom:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.08);
}
.ox-side-item{
  height:34px;
  border-radius:12px;
  margin-bottom:10px;
  background:rgba(255,255,255,.08);
}
.ox-side-item.active{
  background:linear-gradient(135deg,var(--ox-burgundy),rgba(201,162,78,.36));
}
.ox-window-main{
  padding:22px;
  background:linear-gradient(180deg,#fff,#FFFCF7);
}
.ox-app-hero{
  padding:22px;
  min-height:146px;
  border-radius:26px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 24%,rgba(201,162,78,.35),transparent 34%),
    linear-gradient(135deg,#07111F,var(--ox-burgundy) 70%,var(--ox-gold2));
}
.ox-app-hero small{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:950;
}
.ox-app-hero strong{
  display:block;
  margin-top:10px;
  font-size:34px;
  line-height:1;
  letter-spacing:-.06em;
}
.ox-app-kpis{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.ox-app-kpi{
  height:96px;
  padding:15px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(16,24,40,.08);
  box-shadow:0 10px 24px rgba(15,23,42,.035);
}
.ox-app-kpi span{
  display:block;
  width:46%;
  height:8px;
  border-radius:99px;
  background:#EAECF0;
}
.ox-app-kpi strong{
  display:block;
  width:72%;
  height:26px;
  border-radius:9px;
  background:#101828;
  margin-top:15px;
}
.ox-floating-insight{
  position:absolute;
  right:-22px;
  bottom:42px;
  width:245px;
  border-radius:26px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 24px 70px rgba(15,23,42,.18);
}
.ox-floating-insight span{
  display:block;
  color:var(--ox-muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.10em;
  font-weight:950;
}
.ox-floating-insight strong{
  display:block;
  margin:8px 0;
  color:var(--ox-burgundy);
  font-size:36px;
  letter-spacing:-.055em;
}
.ox-floating-insight p{
  margin:0;
  color:var(--ox-muted);
  line-height:1.5;
  font-size:13px;
}

/* Sections */
.ox-section{padding:88px 0}
.ox-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:34px;
  margin-bottom:36px;
}
.ox-section-head h2{
  margin:14px 0 0;
  max-width:730px;
  color:var(--ox-ink);
  font-size:clamp(34px,4.2vw,60px);
  line-height:1;
  letter-spacing:-.065em;
  font-weight:950;
}
.ox-section-head p{
  margin:0;
  max-width:520px;
  color:var(--ox-muted);
  font-size:16px;
  line-height:1.75;
}
.ox-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.ox-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}

.ox-card{
  position:relative;
  padding:25px;
  min-height:226px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 18px 55px rgba(15,23,42,.07);
  overflow:hidden;
}
.ox-card:after{
  content:"";
  position:absolute;
  right:-42px;
  top:-42px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(201,162,78,.10);
}
.ox-icon{
  width:50px;
  height:50px;
  border-radius:18px;
  margin-bottom:22px;
  background:
    radial-gradient(circle at 72% 20%,rgba(255,255,255,.36),transparent 35%),
    linear-gradient(135deg,var(--ox-burgundy),var(--ox-gold));
  box-shadow:0 12px 26px rgba(122,18,48,.15);
}
.ox-card h3{
  position:relative;
  margin:0 0 10px;
  color:var(--ox-ink);
  font-size:22px;
  letter-spacing:-.035em;
}
.ox-card p{
  position:relative;
  margin:0;
  color:var(--ox-muted);
  font-size:14.5px;
  line-height:1.68;
}
.ox-module-card{
  min-height:218px;
}
.ox-module-card small{
  display:inline-flex;
  position:relative;
  z-index:1;
  padding:6px 10px;
  margin-bottom:16px;
  border-radius:999px;
  background:#F4E7C9;
  color:var(--ox-burgundy);
  font-weight:950;
  font-size:11px;
}

/* Dark authority */
.ox-authority{
  border-radius:44px;
  padding:56px;
  color:#fff;
  background:
    radial-gradient(circle at 88% 22%,rgba(201,162,78,.28),transparent 32%),
    linear-gradient(135deg,#07111F,#241626 36%,var(--ox-burgundy));
  box-shadow:0 30px 95px rgba(15,23,42,.20);
  overflow:hidden;
}
.ox-authority h2{
  margin:14px 0;
  max-width:780px;
  color:#fff;
  font-size:clamp(34px,4.4vw,64px);
  line-height:1;
  letter-spacing:-.065em;
}
.ox-authority p{
  margin:0;
  max-width:740px;
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.75;
}
.ox-dark-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:34px;
}
.ox-dark-stat{
  padding:22px;
  min-height:132px;
  border-radius:25px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
}
.ox-dark-stat strong{
  display:block;
  color:#fff;
  font-size:34px;
  letter-spacing:-.055em;
}
.ox-dark-stat span{
  display:block;
  margin-top:9px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.45;
  font-weight:800;
}

/* Industries */
.ox-industries{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.ox-industry{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:22px;
  border-radius:26px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 14px 40px rgba(15,23,42,.06);
}
.ox-industry i{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:15px;
  background:#F4E7C9;
}
.ox-industry h3{margin:0 0 7px;font-size:18px;letter-spacing:-.025em}
.ox-industry p{margin:0;color:var(--ox-muted);line-height:1.6;font-size:14px}

/* Pricing */
.ox-pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:stretch;
}
.ox-price-card{
  position:relative;
  padding:30px;
  border-radius:32px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 18px 55px rgba(15,23,42,.07);
}
.ox-price-card.featured{
  transform:translateY(-14px);
  background:linear-gradient(180deg,#fff,#FFFCF7);
  border:2px solid rgba(122,18,48,.22);
}
.ox-badge{
  position:absolute;
  top:22px;
  right:22px;
  padding:6px 10px;
  border-radius:999px;
  background:#F4E7C9;
  color:var(--ox-burgundy);
  font-size:11px;
  font-weight:950;
}
.ox-price-card h3{
  margin:0 0 8px;
  color:var(--ox-ink);
  font-size:27px;
  letter-spacing:-.045em;
}
.ox-price-card > p{
  margin:0;
  color:var(--ox-muted);
  line-height:1.6;
  min-height:72px;
}
.ox-price{
  margin:24px 0;
  color:var(--ox-ink);
}
.ox-price strong{
  display:block;
  font-size:42px;
  letter-spacing:-.065em;
  line-height:1;
}
.ox-price span{
  display:block;
  margin-top:7px;
  color:var(--ox-muted);
  font-weight:850;
}
.ox-price-card ul{
  list-style:none;
  padding:0;
  margin:20px 0 28px;
}
.ox-price-card li{
  padding:10px 0;
  border-bottom:1px solid rgba(16,24,40,.07);
  color:#475467;
  line-height:1.5;
}
.ox-price-card li:before{
  content:"✓";
  color:var(--ox-burgundy);
  font-weight:950;
  margin-right:8px;
}

/* Process / FAQ / CTA */
.ox-step-number{
  display:grid;
  place-items:center;
  width:42px;height:42px;
  border-radius:15px;
  margin-bottom:20px;
  background:#F4E7C9;
  color:var(--ox-burgundy);
  font-weight:950;
}
.ox-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.ox-faq{
  padding:24px;
  border-radius:28px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 14px 42px rgba(15,23,42,.055);
}
.ox-faq h3{
  margin:0 0 10px;
  color:var(--ox-ink);
  font-size:18px;
  letter-spacing:-.025em;
}
.ox-faq p{
  margin:0;
  color:var(--ox-muted);
  line-height:1.65;
  font-size:14px;
}
.ox-cta{
  padding:80px 0 96px;
}
.ox-cta-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
  padding:50px;
  border-radius:44px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:var(--ox-shadow);
}
.ox-cta-card h2{
  margin:0 0 12px;
  max-width:760px;
  color:var(--ox-ink);
  font-size:clamp(34px,4vw,58px);
  line-height:1;
  letter-spacing:-.065em;
}
.ox-cta-card p{
  margin:0;
  max-width:760px;
  color:var(--ox-muted);
  line-height:1.7;
}

.ox-footer{
  padding:42px 0;
  color:#fff;
  background:#07111F;
}
.ox-footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.ox-footer p{
  margin:0;
  color:rgba(255,255,255,.66);
}
.ox-footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.78);
  font-size:14px;
  font-weight:800;
}

/* Contact form */
.ox-demo-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:24px;
  max-width:760px;
}
.ox-demo-form input,.ox-demo-form select,.ox-demo-form textarea{
  width:100%;
  min-height:48px;
  border-radius:16px;
  border:1px solid rgba(16,24,40,.12);
  padding:12px 14px;
  color:var(--ox-ink);
  background:#fff;
  font:inherit;
}
.ox-demo-form textarea{
  min-height:110px;
  grid-column:1/-1;
  resize:vertical;
}
.ox-demo-form .ox-btn{
  width:max-content;
}

/* Responsive */
@media(max-width:1080px){
  .ox-nav-links{display:none}
  .ox-mobile-toggle{display:inline-grid;place-items:center}
  .ox-hero-grid{grid-template-columns:1fr}
  .ox-product-shell{max-width:760px;margin:0 auto}
  .ox-section-head{display:block}
  .ox-section-head p{margin-top:14px}
  .ox-grid-3,.ox-pricing-grid{grid-template-columns:1fr}
  .ox-grid-4,.ox-dark-stats{grid-template-columns:repeat(2,1fr)}
  .ox-price-card.featured{transform:none}
}
@media(max-width:760px){
  .ox-container{width:min(100% - 28px,1200px)}
  .ox-nav-actions .ox-btn.secondary{display:none}
  .ox-hero{padding-top:48px}
  .ox-hero h1{font-size:52px}
  .ox-proof-row,.ox-grid-4,.ox-dark-stats,.ox-industries,.ox-faq-grid,.ox-cta-card,.ox-demo-form{grid-template-columns:1fr}
  .ox-window-body{grid-template-columns:1fr}
  .ox-window-sidebar{display:none}
  .ox-floating-insight{position:relative;right:auto;bottom:auto;width:auto;margin-top:16px}
  .ox-authority,.ox-cta-card{padding:32px}
  .ox-footer-grid{display:block}
  .ox-footer-links{margin-top:18px}
}


/* Orvix V27 — Human Visual Commercial Upgrade */
.ox-visual-card{
  position:relative;
  min-height:100%;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 24px 80px rgba(15,23,42,.11);
}
.ox-visual-card img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
}
.ox-visual-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:16px 18px;
  border-radius:22px;
  color:#fff;
  background:rgba(7,17,31,.82);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.ox-visual-caption strong{
  display:block;
  font-size:18px;
  letter-spacing:-.03em;
  margin-bottom:6px;
}
.ox-visual-caption span{
  color:rgba(255,255,255,.76);
  line-height:1.5;
  font-size:13px;
}
.ox-split-section{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(420px,1.05fr);
  gap:34px;
  align-items:center;
}
.ox-split-copy h2{
  margin:14px 0 16px;
  color:var(--ox-ink);
  font-size:clamp(34px,4.2vw,60px);
  line-height:1;
  letter-spacing:-.065em;
}
.ox-split-copy p{
  margin:0 0 22px;
  color:var(--ox-muted);
  font-size:16px;
  line-height:1.75;
}
.ox-bullet-list{
  display:grid;
  gap:12px;
}
.ox-bullet{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(16,24,40,.08);
}
.ox-bullet i{
  flex:0 0 auto;
  width:24px;
  height:24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--ox-burgundy),var(--ox-gold));
  box-shadow:0 8px 18px rgba(122,18,48,.16);
}
.ox-bullet strong{
  display:block;
  color:var(--ox-ink);
  font-size:14px;
  margin-bottom:3px;
}
.ox-bullet span{
  display:block;
  color:var(--ox-muted);
  font-size:13px;
  line-height:1.45;
}
.ox-card .ox-mini-visual{
  width:100%;
  height:126px;
  border-radius:22px;
  margin:-6px 0 20px;
  object-fit:cover;
  background:#FFFCF7;
}
.ox-photo-strip{
  display:grid;
  grid-template-columns:1.1fr .9fr 1fr;
  gap:16px;
  margin-top:32px;
}
.ox-photo-tile{
  position:relative;
  min-height:250px;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(255,255,255,.20);
}
.ox-photo-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ox-photo-tile:nth-child(2){transform:translateY(26px)}
.ox-photo-tile span{
  position:absolute;
  left:14px;
  bottom:14px;
  right:14px;
  border-radius:18px;
  padding:12px;
  color:#fff;
  background:rgba(7,17,31,.78);
  font-size:13px;
  font-weight:900;
}
.ox-hero-visual-img{
  position:absolute;
  right:18px;
  top:18px;
  width:136px;
  height:104px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 22px 52px rgba(15,23,42,.22);
}
.ox-human-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}
.ox-human-proof div{
  border-radius:24px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 14px 40px rgba(15,23,42,.06);
}
.ox-human-proof strong{
  display:block;
  color:var(--ox-burgundy);
  font-size:15px;
  margin-bottom:6px;
}
.ox-human-proof span{
  display:block;
  color:var(--ox-muted);
  font-size:13px;
  line-height:1.5;
}
@media(max-width:1080px){
  .ox-split-section{grid-template-columns:1fr}
  .ox-photo-strip{grid-template-columns:1fr}
  .ox-photo-tile:nth-child(2){transform:none}
}
@media(max-width:760px){
  .ox-human-proof{grid-template-columns:1fr}
  .ox-hero-visual-img{display:none}
}


/* Orvix V28 — Representative Design System */
.ox-representative-hero{
  position:relative;
  margin-top:22px;
  border-radius:36px;
  overflow:hidden;
  border:1px solid rgba(16,24,40,.10);
  background:#fff;
  box-shadow:0 28px 90px rgba(15,23,42,.13);
}
.ox-representative-hero img{
  width:100%;
  min-height:420px;
  object-fit:cover;
}
.ox-representative-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.ox-representative-card{
  position:relative;
  min-height:460px;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 22px 70px rgba(15,23,42,.10);
}
.ox-representative-card img{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
}
.ox-representative-overlay{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:18px;
  border-radius:24px;
  background:rgba(7,17,31,.84);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.ox-representative-overlay small{
  display:inline-flex;
  margin-bottom:8px;
  color:#F4E7C9;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.ox-representative-overlay strong{
  display:block;
  font-size:22px;
  letter-spacing:-.035em;
  margin-bottom:7px;
}
.ox-representative-overlay span{
  display:block;
  color:rgba(255,255,255,.74);
  line-height:1.5;
  font-size:13px;
}
.ox-platform-preview-row{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
}
.ox-visual-story{
  padding:30px;
  border-radius:34px;
  background:#fff;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 22px 70px rgba(15,23,42,.08);
}
.ox-visual-story h3{
  margin:0 0 12px;
  color:var(--ox-ink);
  font-size:34px;
  line-height:1;
  letter-spacing:-.055em;
}
.ox-visual-story p{
  margin:0 0 18px;
  color:var(--ox-muted);
  line-height:1.75;
}
.ox-story-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.ox-story-tags span{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:#F4E7C9;
  color:var(--ox-burgundy);
  font-size:12px;
  font-weight:950;
}
@media(max-width:1080px){
  .ox-representative-grid,
  .ox-platform-preview-row{
    grid-template-columns:1fr;
  }
}
@media(max-width:760px){
  .ox-representative-card,
  .ox-representative-card img{
    min-height:380px;
  }
}


/* Orvix V29 — Logo, Login Link & Elegance Refinement */
.ox-brand-logo{
  height:42px;
  width:auto;
  max-width:168px;
  object-fit:contain;
  filter:drop-shadow(0 10px 24px rgba(15,23,42,.08));
}
.ox-brand.has-logo .ox-brand-mark,
.ox-brand.has-logo .ox-brand-text{
  display:none !important;
}
.ox-nav{
  background:rgba(250,247,241,.90) !important;
}
.ox-hero{
  padding-top:92px !important;
}
.ox-hero:before{
  background:
    radial-gradient(circle at 78% 8%,rgba(201,162,78,.22),transparent 30%),
    radial-gradient(circle at 8% 40%,rgba(122,18,48,.10),transparent 28%),
    linear-gradient(115deg,rgba(255,255,255,.82),rgba(247,244,239,.72) 48%,rgba(244,231,201,.38)) !important;
}
.ox-hero h1{
  font-size:clamp(54px,6.7vw,104px) !important;
  letter-spacing:-.086em !important;
}
.ox-hero-copy{
  max-width:760px !important;
  color:#344054 !important;
}
.ox-representative-hero{
  background:
    linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,252,247,.72)) !important;
  border:1px solid rgba(201,162,78,.18) !important;
  box-shadow:
    0 36px 100px rgba(15,23,42,.15),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
.ox-representative-hero:after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:28px;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.46);
}
.ox-card,
.ox-price-card,
.ox-faq,
.ox-industry,
.ox-visual-story,
.ox-representative-card,
.ox-visual-card{
  border-color:rgba(16,24,40,.085) !important;
  box-shadow:0 24px 70px rgba(15,23,42,.075) !important;
}
.ox-card:hover,
.ox-price-card:hover,
.ox-representative-card:hover,
.ox-visual-card:hover{
  transform:translateY(-4px);
  transition:transform .22s ease, box-shadow .22s ease;
  box-shadow:0 32px 90px rgba(15,23,42,.11) !important;
}
.ox-section{
  padding:98px 0 !important;
}
.ox-section-head h2,
.ox-split-copy h2,
.ox-visual-story h3,
.ox-cta-card h2{
  letter-spacing:-.072em !important;
}
.ox-eyebrow{
  box-shadow:0 10px 28px rgba(15,23,42,.045);
}
.ox-btn.primary{
  background:linear-gradient(135deg,#7A1230 0%,#9B173F 58%,#B0824F 130%) !important;
  box-shadow:0 18px 38px rgba(122,18,48,.22) !important;
}
.ox-btn.secondary{
  border-color:rgba(16,24,40,.10) !important;
}
.ox-authority{
  box-shadow:0 40px 110px rgba(15,23,42,.22) !important;
}
.ox-footer{
  background:
    radial-gradient(circle at 80% 0%,rgba(201,162,78,.18),transparent 30%),
    #07111F !important;
}
@media(max-width:760px){
  .ox-brand-logo{height:36px;max-width:132px}
  .ox-hero h1{font-size:56px !important}
}


/* Orvix V30 — Final Uploaded Logo Integration */
.ox-brand-logo{
  height:46px !important;
  width:auto !important;
  max-width:230px !important;
  object-fit:contain !important;
  display:block !important;
  filter:none !important;
}
.ox-brand.has-logo{
  min-width:230px !important;
}
.ox-nav-inner{
  height:84px !important;
}
.ox-nav{
  background:rgba(248,244,237,.92) !important;
  border-bottom:1px solid rgba(16,24,40,.07) !important;
}
.ox-footer-grid{
  gap:18px !important;
}
.ox-footer-brand{
  display:flex !important;
  align-items:center !important;
}
.ox-footer-brand-logo{
  width:180px !important;
  height:auto !important;
  display:block !important;
}
.ox-footer p{
  margin-left:auto !important;
}
.ox-hero{
  padding-top:84px !important;
}
.ox-representative-hero{
  max-width:100% !important;
}
@media(max-width:760px){
  .ox-brand.has-logo{min-width:auto !important}
  .ox-brand-logo{height:38px !important;max-width:178px !important}
  .ox-footer-grid{display:grid !important;gap:14px !important}
  .ox-footer p{margin-left:0 !important}
  .ox-footer-brand-logo{width:150px !important}
}
