/*
Theme Name: Rionyx Industries
Theme URI: https://rionyx.com/
Author: Rionyx
Description: Custom WordPress Theme for Rionyx Industries
Version: 1.0
*/
:root {
  --navy: #0B1D35;
  --navy-mid: #122545;
  --navy-lite: #1A3360;
  --orange: #E8620A;
  --orange-dk: #C4520A;
  --blue: #0E9EE5;
  --teal: #0BA5A0;
  --white: #FFFFFF;
  --offwhite: #F5F7FA;
  --gray: #E8ECF0;
  --text: #4B5563;
  --text-dk: #1F2937;
  --text-lt: #6B7280;
  --border: #D1D9E0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow: 0 4px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, .18);
  --r: 8px;
  --r-lg: 14px;
  --ff-h: 'Barlow', 'Space Grotesk', sans-serif;
  --ff-b: 'Inter', 'Helvetica Neue', sans-serif;
  --ff-m: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: .8rem;
  color: #94a3b8;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-left {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-item a:hover {
  color: var(--orange);
}

.tb-right {
  display: flex;
  gap: 8px;
}

.tb-soc {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: background .2s;
}

.tb-soc:hover {
  background: var(--orange);
  color: white;
}

/* NAV */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--orange);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.nav-logo-text {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: var(--r);
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-dk);
  transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item a {
  color: var(--orange);
  background: rgba(232, 98, 10, .07);
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-phone {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}

.btn-quote {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: .85rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
}

.hamburger span {
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 0;

  /* Hidden state */
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mob-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav#navbar {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

body:has(.mob-nav.open) nav#navbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.mob-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mob-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 1.8rem;
  color: white;
  background: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 98, 10, .35);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-white-outline:hover {
  background: white;
  color: var(--navy);
}

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

.btn-navy:hover {
  background: var(--navy-lite);
}

.btn-lg {
  padding: 16px 36px;
  font-size: .96rem;
}

/* LAYOUT */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.sec {
  padding: 96px 0;
}

.sec-sm {
  padding: 64px 0;
}

.sec-bg {
  background: var(--offwhite);
}

.sec-navy {
  background: var(--navy);
}

.sec-head {
  margin-bottom: 52px;
}

.tag-line {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-line::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.sec-h2 {
  font-family: var(--ff-h);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.sec-h2.wh {
  color: white;
}

.sec-desc {
  font-size: 1rem;
  color: var(--text);
  max-width: 620px;
  line-height: 1.75;
}

.sec-desc.wh {
  color: rgba(255, 255, 255, .7);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0D2648 60%, #12325A 100%);
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 98, 10, .13) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .6;
}

.hero-blob1 {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 158, 229, .15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-blob2 {
  position: absolute;
  bottom: -20%;
  left: 4%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 98, 10, .1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 98, 10, .15);
  border: 1px solid rgba(232, 98, 10, .35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .77rem;
  font-family: var(--ff-m);
  color: #fb923c;
  letter-spacing: .06em;
  margin-bottom: 20px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}

.hero-h1 {
  font-family: var(--ff-h);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.hero-h1 .hl {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-certs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.hcert {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 5px;
  padding: 4px 11px;
  font-size: .73rem;
  color: rgba(255, 255, 255, .55);
  font-family: var(--ff-m);
}

.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.hero-card img {
  border-radius: var(--r);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hpill {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hpill.tl {
  top: -14px;
  left: -16px;
}

.hpill.br {
  bottom: -14px;
  right: -16px;
}

.hpill-num {
  font-family: var(--ff-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hpill-txt {
  font-size: .72rem;
  color: var(--text-lt);
  line-height: 1.3;
}

/* STAT BAR */
.statbar {
  background: var(--orange);
}

.statbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.st-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  gap: 14px;
}

.st-item:last-child {
  border-right: none;
}

.st-icon {
  font-size: 1.6rem;
}

.st-val {
  font-family: var(--ff-h);
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.st-val small {
  font-size: .85rem;
}

.st-lbl {
  font-size: .74rem;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--orange);
  color: white;
  border-radius: var(--r-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.ab-num {
  font-family: var(--ff-h);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.ab-txt {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
  margin-top: 4px;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 22px 0 28px;
}

.ach {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .9rem;
  color: var(--text);
}

.ach-icon {
  color: var(--orange);
  font-size: .95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* WHY CARDS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 98, 10, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
}

.why-desc {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.65;
}

/* QUOTE CALCULATOR */
.quote-sec {
  background: var(--navy);
  padding: 88px 0;
}

.quote-head {
  text-align: center;
  margin-bottom: 48px;
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

.q-form {
  background: white;
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.qf-title {
  font-family: var(--ff-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.qf-sub {
  font-size: .84rem;
  color: var(--text-lt);
  margin-bottom: 26px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fl {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dk);
}

.fi,
.fs {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 10px 12px;
  font-size: .91rem;
  color: var(--text-dk);
  background: white;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.fi:focus,
.fs:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 98, 10, .1);
}

.fi.err,
.fs.err {
  border-color: #ef4444;
}

.fi::placeholder {
  color: var(--text-lt);
}

.fuw {
  position: relative;
}

.fuw .fi {
  padding-right: 40px;
}

.fu {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .73rem;
  color: var(--text-lt);
  pointer-events: none;
}

.ferr {
  font-size: .71rem;
  color: #ef4444;
  display: none;
}

.ferr.show {
  display: block;
}

.qcalc-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border-radius: var(--r);
  padding: 14px;
  font-size: .98rem;
  font-weight: 700;
  margin-top: 8px;
  transition: background .2s;
  box-shadow: 0 4px 16px rgba(232, 98, 10, .3);
}

.qcalc-btn:hover {
  background: var(--orange-dk);
}

.q-result {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
  backdrop-filter: blur(8px);
}

.qr-tag {
  font-family: var(--ff-m);
  font-size: .68rem;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 11px;
  margin-bottom: 16px;
}

#qr-empty {
  text-align: center;
  padding: 26px 0;
}

#qr-empty .qi {
  font-size: 2.4rem;
  margin-bottom: 9px;
}

#qr-empty p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

#qr-filled {
  display: none;
}

.qr-pl {
  font-family: var(--ff-m);
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

#qr-price {
  font-family: var(--ff-h);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

#qr-note {
  font-size: .77rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.qr-rows {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.qr-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
}

.qr-rl {
  color: rgba(255, 255, 255, .45);
}

.qr-rv {
  font-family: var(--ff-m);
  color: white;
  font-size: .77rem;
  text-align: right;
}

.qr-rv.hi {
  color: #34d399;
}

.qr-lt {
  margin-top: 14px;
  background: rgba(52, 211, 153, .1);
  border: 1px solid rgba(52, 211, 153, .2);
  border-radius: var(--r);
  padding: 10px 13px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .81rem;
  color: #34d399;
}

.qr-ltd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  margin-top: 4px;
}

.qr-btn {
  margin-top: 14px;
  width: 100%;
  background: var(--orange);
  color: white;
  border-radius: var(--r);
  padding: 12px;
  font-size: .88rem;
  font-weight: 700;
  transition: background .2s;
  cursor: pointer;
}

.qr-btn:hover {
  background: var(--orange-dk);
}

.qr-disc {
  margin-top: 9px;
  font-size: .69rem;
  color: rgba(255, 255, 255, .32);
  text-align: center;
  line-height: 1.55;
}

/* CAPABILITIES */
.cap-wrap {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cap-table {
  width: 100%;
  border-collapse: collapse;
}

.cap-table thead th {
  background: var(--navy);
  color: white;
  padding: 13px 20px;
  text-align: left;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cap-table tbody tr {
  border-bottom: 1px solid var(--gray);
  transition: background .15s;
}

.cap-table tbody tr:last-child {
  border-bottom: none;
}

.cap-table tbody tr:hover {
  background: rgba(232, 98, 10, .03);
}

.cap-table td {
  padding: 13px 20px;
  font-size: .88rem;
  vertical-align: top;
}

.col-l {
  color: var(--text-lt);
  width: 38%;
  font-weight: 600;
}

.col-r {
  color: var(--text-dk);
}

.cbadge {
  display: inline-block;
  border-radius: 5px;
  padding: 2px 8px;
  font-size: .73rem;
  font-weight: 600;
  margin: 2px;
}

.cb-b {
  background: rgba(14, 158, 229, .1);
  color: #0369a1;
  border: 1px solid rgba(14, 158, 229, .2);
}

.cb-o {
  background: rgba(232, 98, 10, .1);
  color: var(--orange-dk);
  border: 1px solid rgba(232, 98, 10, .2);
}

.cb-g {
  background: rgba(22, 163, 74, .08);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, .2);
}

.cb-t {
  background: rgba(11, 165, 160, .1);
  color: var(--teal);
  border: 1px solid rgba(11, 165, 160, .2);
}

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  border-bottom: 3px solid transparent;
}

.ind-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--orange);
}

.ind-icon {
  font-size: 1.9rem;
  margin-bottom: 13px;
}

.ind-title {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.ind-apps {
  font-size: .81rem;
  color: var(--text-lt);
  line-height: 1.65;
}

.ind-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  font-size: .81rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap .2s;
}

.ind-more:hover {
  gap: 8px;
}

/* PROCESS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray);
}

.step {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 58px;
  height: 58px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 14px rgba(232, 98, 10, .38);
}

.step-title {
  font-family: var(--ff-h);
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.step-desc {
  font-size: .78rem;
  color: var(--text-lt);
  line-height: 1.6;
}

/* MARKET CARDS */
.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.mcard {
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.mcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mcard.india {
  background: linear-gradient(135deg, var(--navy) 0%, #143052 100%);
}

.mcard.intl {
  background: linear-gradient(135deg, #0A3245 0%, #0F4A60 100%);
}

.mcard::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.mc-flag {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.mc-title {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 9px;
}

.mc-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  margin-bottom: 22px;
}

.mc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.mc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .78);
}

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

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #C4520A 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--ff-h);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-sub {
  margin-top: 22px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #060E1A;
  color: rgba(255, 255, 255, .6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--orange);
}

.footer-tagline {
  font-size: .72rem;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.footer-about {
  font-size: .81rem;
  line-height: 1.75;
}

.footer-soc {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.fsoc {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: background .2s;
}

.fsoc:hover {
  background: var(--orange);
  color: white;
}

.fc-col h4 {
  font-family: var(--ff-h);
  font-size: .88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.fc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-links a {
  font-size: .8rem;
  transition: color .2s;
}

.fc-links a:hover {
  color: var(--orange);
}

.fci {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
  font-size: .8rem;
}

.fci-i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .76rem;
}

.footer-certs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.fcert {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: .67rem;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .4);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2648 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-dots {
  opacity: .35;
}

.ph-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: .77rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
  font-family: var(--ff-m);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .22);
}

.page-h1 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .62);
  max-width: 580px;
  line-height: 1.75;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger .fade-up:nth-child(1) {
  transition-delay: .05s;
}

.stagger .fade-up:nth-child(2) {
  transition-delay: .13s;
}

.stagger .fade-up:nth-child(3) {
  transition-delay: .21s;
}

.stagger .fade-up:nth-child(4) {
  transition-delay: .29s;
}

.stagger .fade-up:nth-child(5) {
  transition-delay: .37s;
}

.stagger .fade-up:nth-child(6) {
  transition-delay: .45s;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .nav-links,
  .nav-right {
    display: none;
  }

  .topbar {
    font-size: 0.7rem;
  }

  .topbar-inner {
    gap: 16px;
  }

  .tb-item {
    gap: 2px;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-right {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .q-result {
    position: static;
  }

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

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

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .steps-row::before {
    display: none;
  }

  .statbar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .st-item:nth-child(2) {
    border-right: none;
  }
}

@media(max-width:768px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .why-grid,
  .ind-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec {
    padding: 60px 0;
  }

  .statbar-inner {
    grid-template-columns: 1fr;
  }

  .st-item {
    border-right: none;
  }

  .topbar {
    display: none;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

}


/* Page-specific styles */



.svc-hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.shc {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: background .2s;
}

.shc:hover {
  background: rgba(255, 255, 255, .12);
}

.shc-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.shc-title {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.shc-sub {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
}

.svc-block {
  padding: 72px 0;
  border-bottom: 1px solid #E8ECF0;
}

.svc-block:last-child {
  border-bottom: none;
}

.svc-block.alt {
  background: #F5F7FA;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-grid.rev {
  direction: rtl;
}

.svc-grid.rev>* {
  direction: ltr;
}

.svc-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
}

.svc-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #E8ECF0;
  line-height: 1;
  margin-bottom: -8px;
}

.svc-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 24px;
}

.svc-include {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
  color: #4B5563;
}

.svc-check {
  color: #E8620A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media(max-width:960px) {
  .svc-hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-grid,
  .svc-grid.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}


.cap-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.chg {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 18px;
}

.chg-spec {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 4px;
}

.chg-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

@media(max-width:768px) {
  .cap-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.ind-hero-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.iht {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: all .2s;
}

.iht:hover,
.iht.act {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.ind-detail {
  padding: 80px 0;
  border-bottom: 1px solid #E8ECF0;
}

.ind-detail:last-child {
  border-bottom: none;
}

.ind-detail.alt {
  background: #F5F7FA;
}

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

.id-grid.rev {
  direction: rtl;
}

.id-grid.rev>* {
  direction: ltr;
}

.id-icon-big {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.id-apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}

.id-app {
  background: white;
  border: 1px solid #E8ECF0;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: .81rem;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 7px;
}

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

.id-market {
  background: #0B1D35;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.id-market-title {
  font-family: 'Barlow', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.id-market-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.id-market-tag {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
}

@media(max-width:960px) {

  .id-grid,
  .id-grid.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .id-apps-grid {
    grid-template-columns: 1fr;
  }
}


.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.country-card {
  background: white;
  border: 1px solid #E8ECF0;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
  transition: all .25s;
  border-left: 4px solid var(--orange);
}

.country-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.cc-flag {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cc-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0B1D35;
  margin-bottom: 8px;
}

.cc-body {
  font-size: .83rem;
  color: #4B5563;
  line-height: 1.7;
}

.cc-tag {
  display: inline-block;
  background: rgba(232, 98, 10, .08);
  color: #C4520A;
  border: 1px solid rgba(232, 98, 10, .15);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .72rem;
  font-weight: 600;
  margin: 3px 2px;
}

.steps-v {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #E8ECF0;
}

.sv-step:last-child {
  border-bottom: none;
}

.sv-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.sv-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0B1D35;
  margin-bottom: 6px;
}

.sv-body {
  font-size: .86rem;
  color: #4B5563;
  line-height: 1.65;
}

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


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.rfq-form {
  background: white;
  border-radius: 14px;
  padding: 38px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .12);
  border: 1px solid #E8ECF0;
}

.rfq-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0B1D35;
  margin-bottom: 6px;
}

.rfq-sub {
  font-size: .85rem;
  color: #6B7280;
  margin-bottom: 28px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.fl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1F2937;
}

.fi,
.fs,
.ft {
  border: 1.5px solid #D1D9E0;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: .91rem;
  color: #1F2937;
  background: white;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.fi:focus,
.fs:focus,
.ft:focus {
  border-color: #E8620A;
  box-shadow: 0 0 0 3px rgba(232, 98, 10, .1);
}

.fi::placeholder,
.ft::placeholder {
  color: #9CA3AF;
}

.ft {
  resize: vertical;
  min-height: 100px;
}

.fs option {
  background: white;
}

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

.req-note {
  font-size: .72rem;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.submit-btn {
  width: 100%;
  background: #E8620A;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: background .2s;
  box-shadow: 0 4px 16px rgba(232, 98, 10, .3);
}

.submit-btn:hover {
  background: #C4520A;
}

.form-disclaimer {
  font-size: .72rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.cs-card {
  background: white;
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.cs-title {
  font-family: 'Barlow', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #0B1D35;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8620A;
  display: inline-block;
}

.cs-item {
  display: flex;
  gap: 10px;
  margin-bottom: 11px;
  font-size: .82rem;
  color: #4B5563;
}

.cs-icon {
  color: #E8620A;
  flex-shrink: 0;
  margin-top: 1px;
}

.cs-item a {
  color: #4B5563;
  transition: color .2s;
}

.cs-item a:hover {
  color: #E8620A;
}

.cs-map {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid #E8ECF0;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #0B1D35;
  margin-bottom: 6px;
}

.faq-a {
  font-size: .84rem;
  color: #4B5563;
  line-height: 1.65;
}

@media(max-width:960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }

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


/* SPA routing */
/* .page-section {
      display: none;
    } */