/* ============================================================
   BRIVV INC — Orange & Gold Design System
   ============================================================ */
:root {
  --orange:  #ff6a00;
  --amber:   #ffb300;
  --gold:    #ffd700;
  --orange2: #ff8c00;
  --bg:      #070600;
  --bg2:     #0d0a00;
  --bg3:     #141000;
  --glass:   rgba(255,255,255,.03);
  --glass2:  rgba(255,255,255,.055);
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.13);
  --text:    #ffffff;
  --muted:   rgba(255,255,255,.48);
  --muted2:  rgba(255,255,255,.24);
  --glow:    rgba(255,106,0,.45);
  --glow-s:  rgba(255,106,0,.18);
  --glow-a:  rgba(255,179,0,.3);
  --grad:    linear-gradient(135deg,#ff6a00,#e08000,#ffb300);
  --grad-t:  linear-gradient(135deg,#fff 0%,#ff9500 35%,#ffb300 65%,#ffd700 100%);
  --r:       14px;
  --r2:      18px;
  --ease:    cubic-bezier(.16,1,.3,1);
}

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

/* PAGE LOADER */
.page-loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 900; color: #fff;
  animation: loaderPulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 40px var(--glow);
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 30px var(--glow); }
  50%      { transform: scale(1.12); box-shadow: 0 0 60px var(--glow), 0 0 100px var(--glow-a); }
}

/* CANVAS */
#bgCanvas { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.site { position: relative; z-index: 1; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(7,6,0,0); border-bottom: 1px solid rgba(255,255,255,0);
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  animation: navDrop .7s .1s var(--ease) both;
}
@keyframes navDrop { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }
.nav.scrolled {
  background: rgba(7,6,0,.9); border-bottom-color: var(--border);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; padding: 0 2rem; height: 62px; gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.nav-mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
  box-shadow: 0 0 20px var(--glow); animation: markPulse 2.5s ease-in-out infinite;
}
@keyframes markPulse {
  0%,100% { box-shadow: 0 0 16px var(--glow); }
  50%      { box-shadow: 0 0 28px var(--glow), 0 0 50px var(--glow-a); }
}
.nav-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -.03em; }
.nav-brand img { height: 32px; width: auto; object-fit: contain; max-width: 140px; }
.nav-links { display: flex; list-style: none; margin-left: auto; }
.nav-links a {
  display: block; padding: .44rem 1rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted); transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 1px; background: var(--amber); transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: var(--grad); color: #fff; padding: .6rem 1.5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px; flex-shrink: 0; white-space: nowrap;
  box-shadow: 0 0 24px var(--glow-s); transition: box-shadow .25s, transform .2s;
  position: relative; overflow: hidden;
}
.nav-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform: skewX(-18deg); transition: left .5s;
}
.nav-btn:hover::before { left: 130%; }
.nav-btn:hover { box-shadow: 0 0 40px var(--glow), 0 0 80px var(--glow-a); transform: translateY(-1px); }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border2); border-radius: 8px;
  padding: .55rem; cursor: pointer; margin-left: auto;
}
.nav-ham span { display: block; width: 19px; height: 1.5px; background: #fff; transition: .25s; }
.nav-mob {
  display: none; flex-direction: column; list-style: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(7,6,0,.97); border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem; backdrop-filter: blur(24px);
}
.nav-mob.open { display: flex; }
.nav-mob a { display: block; padding: .7rem 0; font-size: .85rem; font-weight: 600; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.04); transition: color .15s; }
.nav-mob a:hover { color: var(--amber); }
.nav-mob li:last-child a { color: var(--amber); border: none; padding-top: .9rem; }

/* GRADIENT TEXT */
.gt {
  background: var(--grad-t); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% auto; animation: gradShift 4s linear infinite;
}
.gt2 {
  background: linear-gradient(90deg,#ffb300,#ffd700,#ff9500,#ffb300);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% auto; animation: gradShift 3s linear infinite;
}
@keyframes gradShift { to { background-position: 200% center; } }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 2.93rem 2rem 3.5rem; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 14px 4px 6px; background: rgba(255,106,0,.09);
  border: 1px solid rgba(255,106,0,.3); border-radius: 100px; margin-bottom: 1.8rem;
  animation: fadeUp .7s .3s var(--ease) both;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg,#ff9500,#ffb300);
  box-shadow: 0 0 8px rgba(255,150,0,.7); animation: pillPulse 2s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 8px rgba(255,150,0,.6); }
  50%      { box-shadow: 0 0 16px rgba(255,150,0,1), 0 0 28px rgba(255,179,0,.4); }
}
.pill-txt {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 {
  font-size: clamp(2.8rem,7.5vw,7rem); font-weight: 900; letter-spacing: -.055em;
  line-height: 1.0; margin-bottom: 1.4rem; max-width: 700px;
}
.hero h1 .line1 { display: block; animation: fadeUp .75s .4s var(--ease) both; }
.hero h1 .line2 { display: block; animation: fadeUp .75s .55s var(--ease) both; }
.hero h1 .line3 { display: block; animation: fadeUp .75s .7s var(--ease) both; }
.hero-sub {
  font-size: clamp(.92rem,1.8vw,1.1rem); color: var(--muted); max-width: 480px;
  line-height: 1.8; margin-bottom: 1.62rem; animation: fadeUp .75s .85s var(--ease) both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.3rem; animation: fadeUp .75s 1s var(--ease) both; }
.stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  animation: fadeUp .75s 1.15s var(--ease) both;
}
.ss-item {
  padding: 1rem 0.9rem; text-align: center; background: rgba(255,255,255,.02);
  transition: background .25s; position: relative; overflow: hidden;
}
.ss-item::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg,transparent,var(--amber),transparent);
  opacity: 0; transition: opacity .25s;
}
.ss-item:hover { background: rgba(255,106,0,.06); }
.ss-item:hover::after { opacity: 1; }
.ss-n {
  display: block; font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; letter-spacing: -.05em;
  background: linear-gradient(135deg,#fff 30%,#ffb300 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .2rem;
}
.ss-l { font-size: .68rem; color: var(--muted2); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2.2rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform: skewX(-18deg); transition: left .5s;
}
.btn:hover::before { left: 130%; }
.btn-primary { background: var(--grad); color: #fff; border-radius: 100px; box-shadow: 0 0 28px var(--glow-s), 0 4px 20px rgba(0,0,0,.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 44px var(--glow), 0 0 80px var(--glow-a); }
.btn-ghost { background: rgba(255,255,255,.05); color: #fff; border: 1px solid var(--border2); border-radius: 100px; backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgba(255,179,0,.4); background: rgba(255,106,0,.08); transform: translateY(-2px); }

/* MARQUEE */
.mq { overflow: hidden; padding: .85rem 0; background: rgba(7,6,0,.92); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mq:hover .mq-track { animation-play-state: paused; }
.mq-track { display: flex; width: max-content; animation: mqa 28s linear infinite; }
.mq.rev .mq-track { animation-direction: reverse; animation-duration: 22s; }
.mq-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 1.5rem; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.22); }
.mq-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: linear-gradient(135deg,#ff6a00,#ffb300); flex-shrink: 0; }
@keyframes mqa { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 1.93rem 2rem; border-bottom: 1px solid var(--border); position: relative; }
.section.alt { background: rgba(255,255,255,.012); }
.wrap { max-width: 1320px; margin: 0 auto; }
.sec-label { display: inline-flex; align-items: center; gap: 6px; padding: 3px 12px 3px 6px; background: rgba(255,106,0,.08); border: 1px solid rgba(255,106,0,.25); border-radius: 100px; margin-bottom: 1rem; }
.sec-label-dot { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg,#ff9500,#ffb300); flex-shrink: 0; }
.sec-label-txt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sec-title { font-size: clamp(1.9rem,4.5vw,3.8rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.08; margin-bottom: .75rem; }
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 400px; line-height: 1.78; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.95rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.svc-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; display: flex; flex-direction: column; position: relative; cursor: default; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.04),transparent 50%); pointer-events: none; z-index: 1; }
.svc-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); opacity: 0; transition: opacity .3s; z-index: 2; }
.svc-card:hover { border-color: rgba(255,106,0,.42); box-shadow: 0 24px 60px rgba(255,106,0,.14), 0 0 0 1px rgba(255,106,0,.1); }
.svc-card:hover::after { opacity: 1; }
.svc-img { width: 100%; padding-top: 48%; position: relative; overflow: hidden; background: var(--bg3); flex-shrink: 0; border-bottom: 1px solid var(--border); }
.svc-img img, .svc-img-ph { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.svc-img img { object-fit: cover; object-position: center; transition: transform .5s var(--ease); display: block; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img-ph { display: flex; align-items: center; justify-content: center; font-size: 2.8rem; background: linear-gradient(135deg,rgba(255,106,0,.1),rgba(255,179,0,.07)); }
.svc-img-ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 30%,rgba(7,6,0,.7)); }
.svc-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 2; }
.svc-num { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--grad-t); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .5rem; }
.svc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; }
.svc-desc { font-size: .85rem; color: var(--muted); line-height: 1.68; flex: 1; margin-bottom: 1rem; }
.svc-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: gap .2s; }
.svc-link:hover { gap: .6rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box { width: 100%; aspect-ratio: 4/3; border-radius: var(--r2); background: linear-gradient(135deg,rgba(255,106,0,.09),rgba(255,179,0,.06)); border: 1px solid rgba(255,106,0,.22); display: flex; align-items: center; justify-content: center; font-size: 5rem; overflow: hidden; position: relative; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5.5rem; }
.about-float-card { position: absolute; bottom: 1.25rem; left: -1.75rem; background: rgba(7,6,0,.96); border: 1px solid rgba(255,106,0,.32); border-radius: 12px; padding: .85rem 1.1rem; backdrop-filter: blur(24px); box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 30px rgba(255,106,0,.1); animation: floatCard 5s ease-in-out infinite; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-float-n { font-size: 1.4rem; font-weight: 900; letter-spacing: -.04em; background: var(--grad-t); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-float-l { font-size: .65rem; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.about-text h2 { font-size: clamp(1.8rem,3.8vw,3.2rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.08; margin-bottom: 0.75rem; }
.about-text p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: .85rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.25rem 0; }
.tag { background: rgba(255,106,0,.08); border: 1px solid rgba(255,106,0,.2); border-radius: 100px; padding: .26rem 1rem; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,179,0,.85); transition: all .2s; }
.tag:hover { background: rgba(255,106,0,.16); border-color: rgba(255,179,0,.45); transform: translateY(-1px); }

/* STATS BAND */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); background: linear-gradient(90deg,rgba(255,106,0,.05),rgba(255,179,0,.04),rgba(255,106,0,.05)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-box { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background .25s; }
.stat-box:last-child { border-right: none; }
.stat-box::before { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1.5px; background: linear-gradient(90deg,transparent,var(--amber),transparent); opacity: 0; transition: opacity .25s; }
.stat-box:hover { background: rgba(255,106,0,.06); }
.stat-box:hover::before { opacity: 1; }
.stat-n { display: block; font-size: clamp(2.2rem,5vw,4rem); font-weight: 900; letter-spacing: -.06em; background: linear-gradient(135deg,#fff 20%,#ffb300 60%,#ffd700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .4rem; }
.stat-l { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); }

/* PROCESS */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.proc-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); padding: 1.5rem 1.4rem; position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.proc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,106,0,.04),transparent 50%); pointer-events: none; }
.proc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grad); opacity: 0; transition: opacity .3s; }
.proc-card:hover { transform: translateY(-5px); border-color: rgba(255,106,0,.4); }
.proc-card:hover::after { opacity: 1; }
.proc-num { display: block; font-size: 3.8rem; font-weight: 900; letter-spacing: -.07em; -webkit-text-stroke: 1px rgba(255,106,0,.28); color: rgba(255,106,0,.06); line-height: 1; margin-bottom: 1.1rem; transition: -webkit-text-stroke-color .3s, color .3s; }
.proc-card:hover .proc-num { -webkit-text-stroke-color: rgba(255,179,0,.5); color: rgba(255,106,0,.12); }
.proc-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.proc-desc { font-size: .84rem; color: var(--muted); line-height: 1.68; }

/* TESTIMONIAL */
.testi-box { background: rgba(255,106,0,.04); border: 1px solid rgba(255,106,0,.18); border-radius: var(--r2); padding: 1.75rem; position: relative; overflow: hidden; }
.testi-box::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle,rgba(255,106,0,.15),transparent 65%); border-radius: 50%; }
.testi-quote { font-size: clamp(1rem,2.5vw,1.4rem); font-weight: 600; line-height: 1.6; position: relative; padding-left: 1.5rem; margin-bottom: 1.6rem; z-index: 1; }
.testi-quote::before { content: '"'; position: absolute; left: 0; top: -.5rem; font-size: 3.5rem; line-height: 1; background: var(--grad-t); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; font-family: Georgia, serif; }
.testi-by { display: flex; align-items: center; gap: 1rem; padding-left: 1.5rem; position: relative; z-index: 1; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; flex-shrink: 0; box-shadow: 0 0 16px var(--glow); }
.testi-name { font-size: .84rem; font-weight: 700; }
.testi-role { font-size: .76rem; color: var(--muted2); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.why-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); padding: 1.35rem; transition: all .28s var(--ease); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,.03),transparent); pointer-events: none; }
.why-card:hover { background: rgba(255,106,0,.06); border-color: rgba(255,106,0,.32); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(255,106,0,.1); }
.why-icon { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg,rgba(255,106,0,.18),rgba(255,179,0,.1)); border: 1px solid rgba(255,106,0,.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.1rem; transition: transform .25s, box-shadow .25s; }
.why-card:hover .why-icon { transform: scale(1.12) rotate(-5deg); box-shadow: 0 0 20px rgba(255,106,0,.2); }
.why-title { font-size: .97rem; font-weight: 700; margin-bottom: .45rem; }
.why-desc { font-size: .84rem; color: var(--muted); line-height: 1.68; }

/* CTA */
.cta-section { padding: 2.48rem 2rem; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.cta-glow1 { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 500px; background: radial-gradient(circle,rgba(255,106,0,.2),transparent 60%); border-radius: 50%; pointer-events: none; animation: ctaBreath 8s ease-in-out infinite; }
.cta-glow2 { position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle,rgba(255,179,0,.12),transparent 65%); border-radius: 50%; pointer-events: none; }
.cta-glow3 { position: absolute; top: -40px; left: -40px; width: 260px; height: 260px; background: radial-gradient(circle,rgba(255,106,0,.08),transparent 65%); border-radius: 50%; pointer-events: none; }
@keyframes ctaBreath { 0%,100% { transform: translateX(-50%) scale(1); opacity: 1; } 50% { transform: translateX(-50%) scale(1.1); opacity: .75; } }
.cta-label { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px 4px 7px; background: rgba(255,106,0,.09); border: 1px solid rgba(255,106,0,.26); border-radius: 100px; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.cta-label-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg,#ff9500,#ffb300); animation: pillPulse 2s ease-in-out infinite; }
.cta-label-txt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-section h2 { font-size: clamp(2.5rem,8vw,7rem); font-weight: 900; letter-spacing: -.055em; line-height: 1.0; margin-bottom: 1.1rem; position: relative; z-index: 1; }
.cta-section p { font-size: 1rem; color: var(--muted); max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.8; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.cta-contact { font-size: .85rem; color: var(--muted2); position: relative; z-index: 1; }
.cta-contact a { color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.cta-contact a:hover { color: var(--amber); border-color: var(--amber); }

/* PAY */
.pay-sec { padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border); }
.pay-box { max-width: 820px; margin: 0 auto; padding: 1.75rem 2.5rem; background: rgba(255,106,0,.04); border: 1px solid rgba(255,106,0,.18); border-radius: var(--r2); text-align: center; position: relative; overflow: hidden; }
.pay-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); }
.pay-box h2 { font-size: clamp(1.6rem,3.5vw,2.8rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: .85rem; }
.pay-box p { font-size: .9rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.8; max-width: 460px; margin-left: auto; margin-right: auto; }

/* PAGE HERO */
.page-hero { padding: 3.15rem 2rem 3rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; top: -120px; left: -80px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(255,106,0,.12),transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px); background-size: 50px 50px; -webkit-mask-image: radial-gradient(ellipse 80% 60% at 40% 0%,black,transparent); mask-image: radial-gradient(ellipse 80% 60% at 40% 0%,black,transparent); }
.breadcrumb { display: flex; align-items: center; gap: .45rem; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--amber); }
.bc-sep { color: rgba(255,255,255,.18); }
.page-hero h1 { font-size: clamp(2.5rem,7vw,6.5rem); font-weight: 900; letter-spacing: -.055em; line-height: 1.0; position: relative; z-index: 1; animation: fadeUp .75s .2s var(--ease) both; }
.feat-img { width: 100%; padding-top: 42%; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--r2); background: var(--bg3); margin-bottom: 1.75rem; }
.feat-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* PROSE */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.8rem; font-weight: 800; letter-spacing: -.03em; margin: 2.75rem 0 1rem; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 2.25rem 0 .75rem; }
.prose p { color: var(--muted); line-height: 1.88; margin-bottom: 1.1rem; font-size: .93rem; }
.prose ul,.prose ol { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: .4rem; font-size: .93rem; }
.prose strong { color: #fff; }
.prose a { background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent; border-bottom: 1px solid rgba(255,150,0,.3); }
.prose blockquote { border-left: 2px solid var(--orange); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(255,106,0,.04); border-radius: 0 8px 8px 0; color: rgba(255,255,255,.8); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2.5rem; align-items: start; margin-top: 2.0rem; }
.contact-lhs h2 { font-size: clamp(2rem,4.5vw,3.8rem); font-weight: 900; letter-spacing: -.05em; line-height: 1.0; margin-bottom: 1.2rem; }
.contact-lhs .sub { font-size: .9rem; color: var(--muted); line-height: 1.82; margin-bottom: 1.62rem; }
.ci-row { display: flex; align-items: flex-start; gap: .9rem; padding: 1.2rem 0; border-top: 1px solid var(--border); transition: background .15s; }
.ci-row:last-of-type { border-bottom: 1px solid var(--border); }
.ci-row:hover { background: rgba(255,106,0,.03); }
.ci-icon { font-size: .95rem; flex-shrink: 0; width: 20px; margin-top: 3px; }
.ci-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); margin-bottom: .2rem; }
.ci-val { font-size: .9rem; font-weight: 600; }
.ci-val a { background: linear-gradient(90deg,#ff9500,#ffb300); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: opacity .2s; }
.ci-val a:hover { opacity: .8; }
.form-card { background: var(--glass2); border: 1px solid var(--border); border-radius: var(--r2); padding: 1.75rem; position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--grad); }
.form-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,106,0,.03),transparent 50%); pointer-events: none; }
.form-head { font-size: .92rem; font-weight: 700; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.finput,.ftextarea { width: 100%; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #fff; padding: .82rem 1.1rem; font-size: .9rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; display: block; -webkit-appearance: none; margin-bottom: .9rem; position: relative; z-index: 1; }
.finput:focus,.ftextarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,0,.15); background: rgba(0,0,0,.5); }
.finput::placeholder,.ftextarea::placeholder { color: rgba(255,255,255,.2); }
.ftextarea { resize: vertical; min-height: 110px; line-height: 1.65; margin-bottom: 0; }
.flabel { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); margin-bottom: .4rem; position: relative; z-index: 1; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
.f-alert { padding: .82rem 1rem; margin-bottom: 1.2rem; font-size: .85rem; border-radius: 8px; display: none; border-left: 2px solid; position: relative; z-index: 1; }
.f-alert.ok { background: rgba(0,200,80,.06); border-color: #00c850; color: #4ade80; }
.f-alert.err { background: rgba(255,50,50,.06); border-color: #ff3232; color: #fb7185; }

/* PER-PAGE PAYMENT */
.pg-pay { max-width: 820px; margin: 4rem auto 0; padding: 1.93rem; background: rgba(255,106,0,.04); border: 1px solid rgba(255,106,0,.18); border-radius: var(--r2); text-align: center; position: relative; overflow: hidden; }
.pg-pay::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--grad); }
.pg-pay h2 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: .85rem; }
.pg-pay p { color: var(--muted); margin-bottom: 1.3rem; line-height: 1.8; font-size: .9rem; }

/* FOOTER */
.site-footer { background: rgba(7,6,0,.98); border-top: 1px solid var(--border); padding: 1.65rem 2rem 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 2.0rem; max-width: 1320px; margin: 0 auto; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.46rem; }
.foot-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 1.1rem; }
.foot-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: #fff; }
.foot-name { font-size: 1.1rem; font-weight: 800; letter-spacing: -.025em; }
.foot-logo-img { height: 28px; width: auto; object-fit: contain; display: block; margin-bottom: 1.1rem; }
.foot-desc { font-size: .84rem; color: var(--muted2); line-height: 1.8; margin-bottom: 1.5rem; }
.foot-soc { display: flex; gap: .5rem; }
.foot-soc-btn { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; }
.foot-soc-btn:hover { border-color: rgba(255,106,0,.5); color: var(--amber); background: rgba(255,106,0,.08); transform: translateY(-2px); }
.foot-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 1.1rem; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: .5rem; }
.foot-links a { font-size: .84rem; color: var(--muted2); transition: color .18s; }
.foot-links a:hover { color: var(--amber); }
.foot-cta-btn { display: inline-block; margin-top: 1.1rem; padding: .58rem 1.35rem; background: var(--grad); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: 100px; box-shadow: 0 0 16px var(--glow-s); transition: box-shadow .2s, transform .2s; }
.foot-cta-btn:hover { box-shadow: 0 0 28px var(--glow); transform: translateY(-2px); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; max-width: 1320px; margin: 0 auto; font-size: .8rem; color: rgba(255,255,255,.2); }
.foot-badge { display: flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.foot-pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 6px var(--glow); animation: pillPulse 2.5s ease-in-out infinite; }

/* ANIMATIONS */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-right{ opacity: 0; transform: translateX(28px);  transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.visible,.fade-left.visible,.fade-right.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* RESPONSIVE */
@media(max-width:1100px){
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.27rem; }
  .about-float-card { display: none; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3),.stat-box:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-box:nth-child(4) { border-right: none; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid  { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.62rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.95rem; }
  .sec-head { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
@media(max-width:768px){
  .nav-links,.nav-btn { display: none; }
  .nav-ham { display: flex; }
  .nav-inner { padding: 0 1.5rem; }
  .hero { padding: 2.48rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(2.5rem,11vw,4.5rem); }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .ss-item:nth-child(2) { border-right: 1px solid var(--border); }
  .ss-item:nth-child(3),.ss-item:nth-child(4) { border-top: 1px solid var(--border); }
  .ss-item:nth-child(4) { border-right: none; }
  .section { padding: 1.75rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-img  { padding-top: 50%; }
  .proc-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; gap: .6rem; text-align: center; }
  .cta-section { padding: 1.93rem 1.5rem; }
  .cta-section h2 { font-size: clamp(2.5rem,11vw,4.5rem); }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .pay-box,.pg-pay,.form-card { padding: 1.4rem 1.5rem; }
  .page-hero { padding: 2.7rem 1.5rem 3rem; }
  .f2 { grid-template-columns: 1fr; }
  .testi-box { padding: 1.75rem; }
}
@media(max-width:480px){
  .stats-band { grid-template-columns: 1fr; }
  .stat-box { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-box:last-child { border-bottom: none; }
  .hero-btns .btn { justify-content: center; width: 100%; }
  .cta-btns  .btn { justify-content: center; width: 100%; }
}
