*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a1a1a;
  --blue: #f47920;
  --sky: #f47920;
  --sky-lt: #808080;
  --white: #ffffff;
  --offwhite: #f5f7fb;
  --border: #dde2ec;
  --text: #0d1f3c;
  --muted: #5a6a82;
  --faint: #8a97aa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--sky-lt);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  z-index: 9999;
  width: 0;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(244, 121, 32, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    border-color 0.25s;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 78px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

#nav.up {
  box-shadow: 0 2px 20px rgba(13, 31, 60, 0.09);
}

.nw {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nlogo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nlogo:hover img {
  transform: scale(1.06);
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nlinks a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.2px;
  position: relative;
}

.nlinks a:not(.nbtn)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f47920;
  transition: width 0.3s;
}

.nlinks a:not(.nbtn):hover::after,
.nlinks a.active::after {
  width: 100%;
}

.nlinks a:hover,
.nlinks a.active {
  color: var(--navy);
}

.nbtn {
  padding: 9px 22px;
  background: var(--blue);
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nbtn:hover {
  background: #e06510 !important;
}

.nhb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nhb span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

.mnav {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 899;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 8px 24px 20px;
}

.mnav.on {
  display: flex;
}

.mnav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.sec {
  padding: 104px 0;
}

.W {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.stag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

.sh2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--navy);
  overflow: hidden;
}

.sh2 em {
  font-style: normal;
  color: var(--blue);
}

.slead {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* PAGE HERO */
.page-hero {
  margin-top: 78px;
  background: #060f1e;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  background-image: radial-gradient(rgba(244, 121, 32, 0.07) 1px,
      transparent 1px);
  background-size: 32px 32px;
  position: absolute;
  inset: 0;
}

.page-hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky-lt);
  margin-bottom: 20px;
}

.page-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sky);
  display: inline-block;
}

.page-title {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 18px;
}

.page-title em {
  font-style: normal;
  color: var(--sky);
}

.page-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 28px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb span {
  color: var(--blue);
}

.ticker {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
}

.t-track {
  display: flex;
  animation: tkr 30s linear infinite;
  white-space: nowrap;
}

.t-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.t-dot {
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes tkr {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* INTRO */
.intro-sec {
  padding: 80px 0;
  background: #fff;
  text-align: -webkit-center;
}

.intro-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 820px;
  margin: 20px 0 0;
}

/* DIVISION CARDS */
.div-sec {
  padding: 80px 0;
}

.div-sec:nth-child(odd) {
  background: var(--offwhite);
}

.div-sec:nth-child(even) {
  background: #fff;
}

.div-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.div-grid.rev {
  grid-template-columns: 1.2fr 1fr;
}

.div-grid.rev .div-content {
  order: 2;
  align-self: center;
}

.div-grid.rev .div-visual {
  order: 1;
}

.div-num {
  font-size: 72px;
  font-weight: 900;
  color: rgba(244, 121, 32, 0.08);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: -12px;
}

.div-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.div-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.div-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.div-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.div-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
}

.div-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.div-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.div-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.div-value {
  margin-top: 24px;
  background: rgb(141 141 141 / 10%);
  padding: 14px 14px;
}

.div-value-t {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.div-value-d {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.div-img {
  height: 100%;
  object-fit: cover;
}

.div-visual {
  position: relative;
  height: 100% ;
}

.div-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--blue);
  padding: 14px 18px;
  min-width: 100px;
  justify-items: anchor-center;
}

.div-visual-badge-n {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.div-visual-badge-l {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* STRENGTH */
.strength-sec {
  padding: 100px 0;
  background: var(--navy);
}

.str-header {
  text-align: center;
  margin-bottom: 64px;
}

section.intro-sec{
  padding-bottom: 0px !important;
}

.str-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.str-item {
  background: var(--navy);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}

.str-item:hover {
  background: #222;
}

.str-icon {
  width: 52px;
  height: 52px;
  background: rgb(255 255 255 / 9%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
}

.str-icon svg {
  width: 22px;
  height: 22px;
}

.str-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.str-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* CTA */
.cta-band {
  background: var(--blue);
  padding: 88px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.cta-inner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 500px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cbtn1 {
  padding: 14px 32px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.cbtn1:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.cbtn2 {
  padding: 13px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.2s;
}

.cbtn2:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

/* FOOTER */
.footer-modern {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 60px 0 0;
}

.fm-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 80px;
}

.fm-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.fm-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}

.fm-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f47920;
}

.fm-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 24px;
}

.fm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.fm-list a {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: inline-block;
}

.fm-list a:hover {
  color: #f47920;
  padding-left: 6px;
}

.fm-contact-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fm-contact-col .fm-title {
  margin-bottom: 4px;
}

.fm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fm-icon {
  width: 36px;
  height: 36px;
  background: rgb(86 86 86 / 10%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47920;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
}

.fm-contact-item:hover .fm-icon {
  transform: scale(1.1);
  background: #f47920;
  color: #fff;
}

.fm-icon svg {
  width: 16px;
  height: 16px;
}

.fm-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fm-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
}

.fm-val {
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
}

.fm-bottom {
  border-top: 1px solid #f1f5f9;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fmb-text {
  font-size: 13px;
  color: #94a3b8;
}

.fmb-text strong {
  color: #64748b;
  font-weight: 600;
}

.fmb-links {
  font-size: 12px;
  color: #cbd5e1;
}

.au {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.al {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.au.in,
.al.in,
.ar.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s !important;
}

.d2 {
  transition-delay: 0.2s !important;
}

.d3 {
  transition-delay: 0.3s !important;
}

.d4 {
  transition-delay: 0.4s !important;
}

/* ══════ BACK TO TOP — Diamond Brand Button ══════ */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 800;
}

#back-top.vis {
  opacity: 1;
  transform: translateY(0);
}

#back-top .btn-outer {
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
  border: 2px solid #0d1f3c;
  border-radius: 3px;
  transition:
    border-color 0.3s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}

#back-top .btn-inner {
  position: absolute;
  inset: 6px;
  transform: rotate(45deg);
  background: #f47920;
  border-radius: 2px;
  transition:
    inset 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s;
}

#back-top .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
}

#back-top .btn-arrow {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#back-top .btn-mark {
  font-size: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  transition: color 0.2s;
  user-select: none;
}

#back-top:hover .btn-outer {
  border-color: #f47920;
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 8px 28px rgba(244, 121, 32, 0.45);
}

#back-top:hover .btn-inner {
  inset: 4px;
  background: #e06510;
}

#back-top:hover .btn-arrow {
  transform: translateY(-2px);
}

#back-top:hover .btn-mark {
  color: rgba(255, 255, 255, 0.95);
}

#back-top:active .btn-outer {
  transform: rotate(45deg) scale(0.94);
}

@media (max-width: 900px) {

  .W,
  .nw {
    padding: 0 24px;
  }

  .nlinks {
    display: none;
  }

  .nhb {
    display: flex;
  }

  .div-grid,
  .div-grid.rev {
    grid-template-columns: 1fr;
  }

  .div-grid.rev .div-content,
  .div-grid.rev .div-visual {
    order: unset;
  }

  .div-cols {
    grid-template-columns: 1fr;
  }

  .str-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    gap: 28px;
  }

  .fm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-hero-inner {
    padding: 0 24px;
  }

  .sec {
    padding: 72px 0;
  }
}

@media (max-width: 580px) {
  .str-grid {
    grid-template-columns: 1fr;
  }

  .fm-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════ SCROLL PROGRESS ══════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #f47920, #ffaa55);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(244, 121, 32, 0.6);
}

/* ══════ CUSTOM CURSOR ══════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #f47920;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    opacity 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(244, 121, 32, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    border-color 0.25s,
    transform 0.08s;
}

@media (max-width: 900px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ══════ BACK TO TOP — Diamond Brand Button ══════ */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 800;
}

#back-top.vis {
  opacity: 1;
  transform: translateY(0);
}

#back-top .btn-outer {
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
  border: 2px solid #0d1f3c;
  border-radius: 3px;
  transition:
    border-color 0.3s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s;
}

#back-top .btn-inner {
  position: absolute;
  inset: 6px;
  transform: rotate(45deg);
  background: #f47920;
  border-radius: 2px;
  transition:
    inset 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s;
}

#back-top .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
}

#back-top .btn-arrow {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#back-top .btn-mark {
  font-size: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  transition: color 0.2s;
  user-select: none;
}

#back-top:hover .btn-outer {
  border-color: #f47920;
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 8px 28px rgba(244, 121, 32, 0.45);
}

#back-top:hover .btn-inner {
  inset: 4px;
  background: #e06510;
}

#back-top:hover .btn-arrow {
  transform: translateY(-2px);
}

#back-top:hover .btn-mark {
  color: rgba(255, 255, 255, 0.95);
}

#back-top:active .btn-outer {
  transform: rotate(45deg) scale(0.94);
}

/* ══════ NAV ══════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 78px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#nav.up {
  box-shadow: 0 2px 20px rgba(13, 31, 60, 0.09);
}

.nw {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nlogo {
  display: flex;
  align-items: center;
  gap: 0;
  animation: navSlideDown 0.7s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nlogo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nlogo:hover img {
  transform: scale(1.06);
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nlinks li {
  opacity: 0;
  animation: fadeInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nlinks li:nth-child(1) {
  animation-delay: 0.2s;
}

.nlinks li:nth-child(2) {
  animation-delay: 0.27s;
}

.nlinks li:nth-child(3) {
  animation-delay: 0.34s;
}

.nlinks li:nth-child(4) {
  animation-delay: 0.41s;
}

.nlinks li:nth-child(5) {
  animation-delay: 0.48s;
}

.nlinks li:nth-child(6) {
  animation-delay: 0.55s;
}

.nlinks li:nth-child(7) {
  animation-delay: 0.62s;
}

.nlinks li:nth-child(8) {
  animation-delay: 0.69s;
}

.nlinks li:nth-child(9) {
  animation-delay: 0.76s;
}

.nlinks a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.2px;
  position: relative;
}

.nlinks a:not(.nbtn)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f47920;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nlinks a:not(.nbtn):hover::after {
  width: 100%;
}

.nlinks a:not(.nbtn).active::after {
  width: 100%;
}

.nlinks a:hover {
  color: var(--navy);
}

.nlinks a.active {
  color: var(--navy);
  font-weight: 700;
}

.nbtn {
  padding: 9px 22px;
  background: var(--blue);
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s !important;
  border-radius: 2px;
}

.nbtn:hover {
  background: #e06510 !important;
}

.nhb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nhb span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.mnav {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 899;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 8px 24px 20px;
}

.mnav.on {
  display: flex;
}

.mnav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nw {
    padding: 0 24px;
  }

  .nlinks {
    display: none;
  }

  .nhb {
    display: flex;
  }
}

/* ══════ FOOTER ══════ */
.footer-modern {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 60px 0 0;
  color: #0f172a;
}

.fm-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 80px;
}

.fm-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.fm-desc {
  font-size: 14.5px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}

.fm-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f47920;
}

.fm-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 24px;
}

.fm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.fm-list a {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-block;
}

.fm-list a:hover {
  color: #f47920;
  padding-left: 6px;
}

.fm-contact-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fm-contact-col .fm-title {
  margin-bottom: 4px;
}

.fm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fm-icon {
  width: 36px;
  height: 36px;
  background: rgb(86 86 86 / 10%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47920;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.fm-contact-item:hover .fm-icon {
  background: #f47920;
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
}

.fm-icon svg {
  width: 16px;
  height: 16px;
}

.fm-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.fm-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
}

.fm-val,
.fm-val a {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s;
}

.fm-val a:hover {
  color: #f47920;
}

.fm-bottom {
  border-top: 1px solid #f1f5f9;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fmb-text {
  font-size: 13px;
  color: #64748b;
}

.fmb-text strong {
  color: #0f172a;
  font-weight: 700;
}

.fmb-links {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

@media (max-width: 1024px) {
  .fm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .fm-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fm-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}