/* ========================================
   NEXORA PAPERS — CONSOLIDATED STYLESHEET
   ======================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy: #1F2D63;
  --navy-dark: #152042;
  --gold: #C89A2B;
  --gold-light: #D4A857;
  --bg-primary: #F8F5EF;
  --bg-secondary: #F5F0E6;
  --bg-tertiary: #F3E8D5;
  --bg-accent: #FFFDF8;
  --text-dark: #1F2D63;
  --text-grey: #6B7280;
  --line: rgba(31, 45, 99, .08);
}

/* ---------- BASE STYLES ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Figtree', sans-serif;
  color: var(--text-dark);
  background: var(--bg-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-dark);
}

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

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-stretch: 118%;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.serif-i {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- PAPER-INSPIRED BACKGROUND PATTERN ---------- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><filter id="blur"><feGaussianBlur stdDeviation="1.2"/></filter></defs><g opacity="0.08" fill="none" stroke="%23C89A2B" stroke-width="0.8" filter="url(%23blur)"><path d="M 100 200 Q 200 150 300 200 T 500 200" vector-effect="non-scaling-stroke"/><path d="M 150 250 Q 300 180 450 250 T 750 250" vector-effect="non-scaling-stroke"/><path d="M 80 320 Q 250 260 420 320 T 760 320" vector-effect="non-scaling-stroke"/><path d="M 200 400 Q 350 340 500 400 T 800 400" vector-effect="non-scaling-stroke"/><path d="M 950 150 Q 1050 120 1150 150" vector-effect="non-scaling-stroke"/><path d="M 1000 250 Q 1080 200 1160 250" vector-effect="non-scaling-stroke"/><path d="M 920 350 Q 1020 300 1120 350" vector-effect="non-scaling-stroke"/><path d="M 50 600 Q 150 560 250 600" vector-effect="non-scaling-stroke"/><path d="M 100 700 Q 220 660 340 700" vector-effect="non-scaling-stroke"/><path d="M 30 800 Q 180 750 330 800" vector-effect="non-scaling-stroke"/><path d="M 850 500 Q 950 450 1050 500 T 1250 500" vector-effect="non-scaling-stroke"/><path d="M 900 600 Q 1000 550 1100 600" vector-effect="non-scaling-stroke"/><path d="M 800 700 Q 920 650 1040 700" vector-effect="non-scaling-stroke"/></g></svg>') no-repeat;
  background-size: 150%;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* ---------- HEADER / NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 90%;
  max-width: 1220px;
  height: 105px;
  background: #ffffff36;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), inset 0 0 60px rgba(255, 255, 255, 0.4);
  border: 2px solid var(--gold);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  padding: 0 40px;
}

.nav.scroll {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 95px;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 48px;
}

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  flex-shrink: 0;
  min-width: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 85px;
  width: auto;
  min-width: 80px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.logo-text .brand-name .gold {
  color: var(--gold);
}

.logo-text .brand-tagline {
  font-family: 'Figtree', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-grey);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---------- NAV LINKS ---------- */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a[aria-current]::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile-only Get a Quote in nav */
.nav-mobile-cta {
  display: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(200, 154, 43, 0.25);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 154, 43, 0.3);
}

.btn-navy {
  background: var(--navy);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 10px;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 26px;
  border-radius: 10px;
  background: transparent;
}

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

/* ---------- SOCIAL ICONS ---------- */
.nav-social {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.nav-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 154, 43, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

/* ---------- BURGER MENU ---------- */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 8px;
  transition: all 0.3s ease;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger.open span {
  background: #c89a2b;
}

/* ---------- HERO SECTION (HOME) ---------- */
.hero {
  position: relative;
  background-image: url('../images/home/hero_img.png');
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  background-color: var(--bg-primary);
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 120px;
  padding-left: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.9) 35%, rgba(248, 245, 239, 0.4) 60%, rgba(248, 245, 239, 0) 85%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: auto;
  text-align: left;
  margin: 0;
  margin-left: max(calc(5vw + 40px), calc((100vw - 1220px) / 2 + 40px));
  padding-right: 40px;
}

.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 28px;
  font-weight: 900;
}

.hero h1 .serif-i {
  color: var(--gold);
  font-size: 0.95em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.72;
  color: #152042;
  max-width: 650px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

#worldmap {
  display: none;
}

.hero-route-tag {
  display: none;
}

.scroll-cue {
  display: none;
}

.hero-swoosh {
  display: none;
}

/* ---------- PAGE HERO (OTHER PAGES) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-dark);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero .wrap {
  max-width: 700px;
  width: auto;
  margin: 0;
  margin-left: max(calc(5vw + 40px), calc((100vw - 1220px) / 2 + 40px));
  padding-right: 40px;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--text-dark);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.015em;
  margin: 20px 0 16px;
  max-width: 16ch;
}

.page-hero p {
  color: var(--text-grey);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 16px;
}

/* ---------- SECTION BASE ---------- */
section {
  padding: 96px 0;
}

.sec-head {
  max-width: 720px;
  margin-bottom: 60px;
}

.sec-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sec-head p {
  margin-top: 18px;
  color: var(--text-grey);
  font-size: 1.08rem;
}

/* ---------- TRUST SECTION ---------- */
.trust {
  background: var(--bg-primary);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.trust-head {
  grid-column: 1 / -1;
  margin-bottom: 48px;
}

.trust-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 16px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px;
  border: none;
  background: #FFFFFF;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.trust-item:hover {
  background: #1F2D63;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 45, 99, 0.25);
  color: #FFFFFF;
}

.trust-item:hover b {
  color: #FFFFFF;
}

.trust-item:hover p {
  color: #E8E8E8;
}

.trust-item:hover .trust-ic {
  background: rgba(200, 154, 43, 0.2);
  border-color: #C89A2B;
}

.trust-ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(200, 154, 43, 0.05);
  font-size: 24px;
}

.trust-item b {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-dark);
  line-height: 1.3;
}

.trust-item p {
  color: var(--text-grey);
  font-size: 0.95rem;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--bg-primary);
}

.about .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about h2 .serif-i {
  color: var(--gold);
}

.about-pts {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.about-pt {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-pt svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
  width: 22px;
  height: 22px;
}

.about-pt p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.7;
}

.about-pt p b {
  color: var(--text-dark);
  font-weight: 600;
}

.about .btn {
  margin-top: 44px;
}

.about-visual {
  position: relative;
}

.reel-stack {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 16px;
  padding: 52px 48px 44px;
  color: #fff;
  overflow: hidden;
}

.reel-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 85% 0%, rgba(200, 154, 43, .16), transparent 60%);
  border-radius: 16px;
}

.reel-rings {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.ring {
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #E3BC85 0%, #D4A857 45%, #8F6335 100%);
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .35);
}

.ring::after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--navy-dark);
}

.ring:nth-child(1) {
  width: 128px;
  height: 128px;
}

.ring:nth-child(2) {
  width: 100px;
  height: 100px;
}

.ring:nth-child(3) {
  width: 76px;
  height: 76px;
}

.ring:nth-child(4) {
  width: 56px;
  height: 56px;
}

.reel-stat {
  position: relative;
  font-family: 'IBM Plex Mono', monospace;
  z-index: 2;
}

.reel-stat b {
  display: block;
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.reel-stat span {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #AAB4D4;
  margin-top: 8px;
  display: block;
}

.geo-chip {
  position: absolute;
  right: -16px;
  top: -22px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(31, 45, 99, .12);
  padding: 18px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .76rem;
  color: var(--text-dark);
  letter-spacing: .06em;
  line-height: 2;
}

.geo-chip b {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- ABOUT PAGE SPECIFIC ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.value-card {
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.35s ease;
}

.value-card:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E6 100%);
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(200, 154, 43, 0.25), inset 0 0 0 1px rgba(200, 154, 43, 0.1);
  transform: translateY(-4px);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

.story-section {
  background: var(--navy);
  padding: 80px 0;
}

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

.story-section .story-text h2 {
  margin-bottom: 24px;
  color: #ffffff;
}

.story-section .story-text p {
  color: #E0E0E0;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* ---------- OFFICES SECTION ---------- */
.offices-section {
  background: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  margin-bottom: 24px;
  width: 100%;
}

.office-card {
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.35s ease;
  width: 100%;
  display: block;
  min-height: 280px;
}

.office-card:hover {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(31, 45, 99, 0.2);
  color: #FFFFFF;
}

.office-card h3 {
  font-size: 1.35rem;
  margin: 12px 0 16px 0;
  color: var(--text-dark);
  transition: color 0.35s ease;
}

.office-card:hover h3 {
  color: #FFFFFF;
}

.office-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  color: #6B7280;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  transition: color 0.35s ease;
}

.office-card:hover .office-label {
  color: var(--gold);
}

.office-details {
  margin-bottom: 24px;
  color: #6B7280;
  line-height: 1.8;
  font-size: 0.95rem;
  transition: color 0.35s ease;
}

.office-card:hover .office-details {
  color: #E0E0E0;
}

.office-details b {
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.35s ease;
}

.office-card:hover .office-details b {
  color: #FFFFFF;
}

.office-contact {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
  transition: border-color 0.35s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.contact-info {
  flex: 1;
  text-align: left;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  flex: 1;
  text-align: center;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.office-card:hover .office-contact {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.office-card:hover .contact-actions {
  border-left-color: var(--gold-light);
}

.office-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-grey);
  transition: color 0.35s ease;
}

.office-card:hover .office-contact p {
  color: #E0E0E0;
}

.office-contact a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: none;
}

.office-contact a:hover {
  color: var(--gold-light);
}

.office-card:hover .office-contact a {
  color: var(--gold);
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.35s ease;
}

.office-card:hover .contact-label {
  color: var(--gold-light);
}

.office-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.office-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-dark);
  border-radius: 50%;
  color: #2563eb;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.office-card:hover .office-icon-btn {
  background: #FFFFFF;
  color: var(--gold);
}

.office-icon-btn:hover {
  transform: translateY(-3px);
}

.values-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.values-list li {
  list-style: none;
  color: var(--text-grey);
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.values-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- PRODUCTS SECTION (HOME) ---------- */
.products {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 15% 0%, rgba(200, 154, 43, .12), transparent 60%);
}

.products .sec-head {
  position: relative;
}

.products h2 {
  color: #fff;
}

.products .sec-head p {
  color: #B4BDDA;
}

.prod-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* HOME PAGE PRODUCT CARDS */
.prod-grid .pcard {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: 1px solid rgba(200, 154, 43, .22);
  border-radius: 12px;
  padding: 42px 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.prod-grid .pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}

.prod-grid .pcard:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 154, 43, .55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
}

.prod-grid .pcard:hover::before {
  opacity: 1;
}

.prod-grid .pcard-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .76rem;
  color: #7E8BB5;
  letter-spacing: .2em;
}

.prod-grid .pcard h3 {
  color: #fff;
  font-size: 1.4rem;
  margin: 16px 0 14px;
  letter-spacing: 0em;
  font-weight: 700;
}

.prod-grid .pcard p {
  color: #B4BDDA;
  font-size: .96rem;
  min-height: 72px;
  line-height: 1.6;
}

.prod-grid .ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.prod-grid .ptags span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid rgba(200, 154, 43, .4);
  padding: 7px 14px;
  border-radius: 100px;
}

.products-cta {
  position: relative;
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

/* ---------- PRODUCTS PAGE SPECIFIC ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.products-grid .pcard {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.products-grid .pcard:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(31, 45, 99, 0.12);
}

.products-grid .pcard-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #E8DACC 0%, #DCC4A0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 45, 99, .3);
  font-size: 0.9rem;
  font-style: italic;
  overflow: hidden;
}

.products-grid .pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-grid .pcard-content {
  padding: 36px;
}

.products-grid .pcard-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  color: var(--text-grey);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.products-grid .pcard h3 {
  color: var(--text-dark);
  font-size: 1.35rem;
  margin: 12px 0 10px;
  letter-spacing: 0;
}

.products-grid .pcard p {
  color: var(--text-grey);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.products-grid .ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.products-grid .ptags span {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 6px 12px;
  border-radius: 100px;
}

.specs-section {
  background: var(--navy);
  padding: 80px 0;
}

.specs-section .eyebrow {
  color: var(--gold);
}

.specs-section h2 {
  color: #FFFFFF;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 0.95rem;
}

.specs-table th {
  background: rgba(200, 154, 43, 0.15);
  color: var(--gold);
  padding: 16px;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  border: 1px solid rgba(200, 154, 43, 0.3);
}

.specs-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(200, 154, 43, 0.2);
  color: #E0E0E0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #FFFFFF;
}

.specs-table tr:hover {
  background: rgba(200, 154, 43, 0.12);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.app-item {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  transition: all 0.35s ease;
  perspective: 1000px;
  height: 280px;
  cursor: pointer;
}

.app-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.app-item:hover .app-item-inner {
  transform: rotateY(180deg);
}

.app-item-front,
.app-item-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
}

.app-item-front {
  background: #d5a14a;
  color: #1F2D63;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.app-item-back {
  background: linear-gradient(135deg, #d5a14a 0%, #c89a4a 100%);
  transform: rotateY(180deg);
  overflow: hidden;
}

.app-item-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-item h4 {
  font-size: 1.15rem;
  color: #1F2D63;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0;
}

.app-item p {
  color: #1F2D63;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- STATS SECTION ---------- */
.stats {
  background: var(--bg-primary);
  padding: 0;
}

.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat {
  padding: 60px 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat b {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--text-dark);
  display: block;
}

.stat b em {
  font-style: normal;
  color: var(--gold);
}

.stat span {
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

/* ---------- WHY SECTION ---------- */
.why .wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 0;
  border-left: 3px solid var(--gold);
  margin-top: 12px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px 0 26px 32px;
  position: relative;
}

.why-item::before {
  content: "→";
  position: absolute;
  left: -4px;
  transform: translateX(-50%);
  background: var(--bg-primary);
  color: var(--gold);
  font-weight: 700;
  padding: 2px 0;
  font-size: 1.1rem;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0em;
  color: var(--text-dark);
}

.why-item p {
  color: var(--text-grey);
  font-size: .95rem;
  margin-top: 4px;
}

.why-side {
  position: sticky;
  top: 140px;
}

/* ---------- CTA SECTION ---------- */
.cta {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 120%, rgba(200, 154, 43, .25), transparent 65%);
}

.cta .wrap {
  position: relative;
}

.cta .eyebrow {
  color: var(--gold-light);
  justify-content: center;
}

.cta .eyebrow::before {
  display: none;
}

.cta h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  max-width: 20ch;
  margin: 24px auto 18px;
}

.cta p {
  color: #B4BDDA;
  max-width: 56ch;
  margin: 0 auto 48px;
  font-size: 1.08rem;
}

.cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- MODAL ---------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #152042;
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(31, 45, 99, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--gold);
}


.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #E4BE6A;
  background-clip: padding-box;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #E4BE6A;
}

.modal-content .inquiry-form {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.modal-content .inquiry-form h3 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.modal-content form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-content .form-message {
  grid-column: 1 / -1;
}

.modal-content .form-group {
  margin-bottom: 0;
}

/* Make full width: Requirements (8), Message (9), Honeypot (10), Submit (11) */
.modal-content .form-group:nth-child(8),
.modal-content .form-group:nth-child(9),
.modal-content .form-group:nth-child(10) {
  grid-column: 1 / -1;
}

.modal-content .form-submit {
  grid-column: 1 / -1;
}

.modal-content .form-group label {
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.modal-content .form-group input,
.modal-content .form-group textarea,
.modal-content .form-group select {
  width: 100%;
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--text-dark);
  padding: 14px 16px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.modal-content .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C89A2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}

.modal-content .form-group select option {
  color: var(--text-dark);
  background-color: #FFFFFF;
  padding: 8px 12px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
}

.modal-content .form-group select option:checked {
  background: linear-gradient(#E4BE6A, #E4BE6A);
  background-color: var(--gold);
  color: var(--text-dark);
}

.modal-content .form-group select option:hover {
  background: #F5F0E6;
  color: var(--text-dark);
}

.modal-content .form-group input::placeholder,
.modal-content .form-group textarea::placeholder {
  color: #999999;
}

.modal-content .form-group input:focus,
.modal-content .form-group textarea:focus,
.modal-content .form-group select:focus {
  outline: none;
  border-color: #E4BE6A;
  box-shadow: 0 0 0 4px rgba(200, 154, 43, 0.25);
  background: #FFFFFF;
}

.modal-content .form-submit {
  margin-top: 32px;
}

.modal-content .form-submit button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  font-family: 'Archivo', sans-serif;
}

.modal-content .form-submit button:hover {
  background: #E4BE6A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 154, 43, 0.35);
}

.modal-content .form-group.honeypot {
  display: none;
}

.modal-content .form-message {
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-content .form-message.success {
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.modal-content .form-message.error {
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* ---------- CONTACT FORM ---------- */
.quick-contact {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 32px 48px;
  text-align: center;
  margin-bottom: 24px;
  margin-top: 16px;
}

.quick-contact h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.quick-contact p {
  color: var(--text-grey);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.quick-contact-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: #FFFFFF;
  border: 2px solid var(--gold);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;
}

.contact-icon-btn i {
  font-size: 28px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.contact-icon-btn span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s ease;
}

.contact-icon-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.contact-icon-btn:hover i,
.contact-icon-btn:hover span {
  color: #FFFFFF;
}

.inquiry-form {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.inquiry-form h3 {
  font-size: 1.35rem;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Figtree', sans-serif;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-accent);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 154, 43, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.honeypot {
  display: none;
}

.form-submit {
  display: flex;
  gap: 12px;
}

.form-submit button {
  flex: 1;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(200, 154, 43, 0.25);
}

.form-submit button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 154, 43, 0.3);
}

.form-message {
  display: none;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ---------- FOOTER ---------- */
footer {
  background: #fdfdfb;
  color: #1F2D63;
  padding: 80px 0 0;
  border-top: 1px solid rgba(31, 45, 99, .15);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 60px;
}

.foot-grid h4 {
  font-family: 'Archivo';
  color: #1F2D63;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}

.foot-grid p,
.foot-grid a {
  font-size: .92rem;
  line-height: 1.9;
  color: #6B7280;
}

.foot-grid a:hover {
  color: var(--gold);
}

.foot-links {
  list-style: none;
}

.foot-brand p {
  max-width: 32ch;
  margin-top: 18px;
}

.foot-office b {
  color: #1F2D63;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.foot-office {
  margin-bottom: 10px;
}

.foot-bottom {
  border-top: 1px solid rgba(31, 45, 99, .1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: #6B7280;
}

.foot-bottom a:not(.foot-icon-btn) {
  color: var(--gold);
}

.foot-icons {
  display: flex;
  gap: 12px;
}

.foot-icon-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  color: #1f2d63;
  font-size: x-large;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.foot-icon-btn:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  box-shadow: 0 10px 25px rgba(200, 154, 43, 0.25);
  text-decoration: none;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(200, 154, 43, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- REVEAL ANIMATION ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .6, .2, 1), transform .8s cubic-bezier(.2, .6, .2, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv-d1 {
  transition-delay: .12s;
}

.rv-d2 {
  transition-delay: .24s;
}

.rv-d3 {
  transition-delay: .36s;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- RESPONSIVE: TABLET ---------- */
@media (max-width: 960px) {
  .about .wrap,
  .why .wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

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

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

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(-n + 2) {
    border-top: 0;
  }

  .stat:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

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

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

  .story-section .wrap,
  .offices-section .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .why-side {
    position: static;
  }

  .nav .wrap {
    gap: 24px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}

/* ---------- RESPONSIVE: MOBILE ---------- */
@media (max-width: 720px) {
  .wrap {
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  .page-hero .wrap {
    text-align: left;
  }

  .hero {
    padding-top: 140px !important;
    min-height: calc(100vh - 100px);
  }

  .hero-inner {
    margin-top: 40px;
  }

  /* Navigation */
  .nav {
    width: 90%;
    height: 90px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    max-width: none;
  }

  .nav .wrap {
    gap: 16px;
    padding: 0;
  }

  .logo {
    gap: 12px;
    min-width: 60px;
  }

  .logo img {
    height: 60px;
    width: auto;
    min-width: 55px;
    display: block;
  }

  .logo-text .brand-name {
    font-size: 0.9rem;
  }

  nav {
    display: block;
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 20px;
    left: -320px;
    width: 280px;
    max-height: calc(100vh - 40px);
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: left 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
    z-index: 999;
    list-style: none;
    padding: 24px 0;
    margin: 0;
    overflow-y: auto;
  }

  .nav-links.open {
    left: 16px;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 24px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(200, 154, 43, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
  }

  .nav-mobile-cta {
    display: list-item;
  }

  .nav-mobile-cta a {
    color: var(--gold) !important;
    font-weight: 700;
    border-top: 1px solid rgba(200, 154, 43, 0.3);
    padding: 20px 24px;
  }

  .nav-mobile-cta a i {
    margin-right: 8px;
  }

  .nav-social {
    margin-top: auto;
    padding: 32px 24px 24px;
    border-top: 1px solid rgba(200, 154, 43, 0.3);
    width: 100%;
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
  }

  .nav-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 154, 43, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
    padding: 0;
    font-size: 20px;
    margin: 0 4px;
  }

  .nav-social a:hover {
    background: var(--gold);
    color: var(--navy);
  }

  .burger {
    display: flex;
  }

  .burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav .btn {
    display: none;
  }

  /* Section padding */
  section {
    padding: 60px 0;
  }

  /* Hero */
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-sub {
    font-size: 1.05rem;
    background: rgb(248 245 239 / 34%);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    margin-top: 16px;
  }

  .hero-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Page Hero */
  .page-hero {
    padding-top: 180px;
    padding-bottom: 60px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn-gold {
    padding: 16px 32px !important;
  }

  .btn-ghost {
    padding: 16px 32px !important;
  }

  /* About section */
  .about .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  .about-visual {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
  }

  .reel-stack {
    padding: 40px 32px 32px;
  }

  .reel-rings {
    margin-bottom: 24px;
  }

  .ring:nth-child(1) {
    width: 60px;
    height: 60px;
  }

  .ring:nth-child(2) {
    width: 48px;
    height: 48px;
  }

  .ring:nth-child(3) {
    width: 36px;
    height: 36px;
  }

  .ring:nth-child(4) {
    width: 24px;
    height: 24px;
  }

  .reel-stat {
    font-size: 1.8rem;
  }

  .geo-chip {
    font-size: 0.85rem;
    margin-top: 20px;
    position: static;
    display: inline-block;
  }

  .about-pts {
    margin-top: 24px;
  }

  .about-pt {
    gap: 12px;
  }

  .about-pt p {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .about-pt svg {
    width: 18px;
    height: 18px;
    margin-top: 3px;
  }

  /* Trust section */
  .trust .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-head {
    margin-bottom: 40px;
    width: 100%;
  }

  .trust-head h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .trust-item {
    border: none;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 280px;
    background: #FFFFFF;
    border-radius: 12px;
  }

  .trust-item:hover {
    background: #1F2D63;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 45, 99, 0.25);
    color: #FFFFFF;
  }

  .trust-item:hover b {
    color: #FFFFFF;
  }

  .trust-item:hover p {
    color: #E8E8E8;
  }

  .trust-item:hover .trust-ic {
    background: rgba(200, 154, 43, 0.2);
    border-color: #C89A2B;
  }

  .trust-ic {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
  }

  /* Footer */
  footer {
    text-align: center;
  }

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

  .foot-grid h4 {
    margin-bottom: 16px;
  }

  .foot-brand {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .foot-brand .logo {
    display: flex;
    justify-content: center;
  }

  .foot-bottom {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .foot-icons {
    justify-content: center;
  }

  .foot-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  /* Back to top */
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  /* Contact page - Office icons */
  .office-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-actions {
    text-align: left;
    width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .office-icons {
    gap: 10px;
  }

  .office-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Products page */
  .specs-section .wrap {
    overflow-x: auto;
    padding: 0;
  }

  .specs-table {
    font-size: 0.85rem;
    min-width: 600px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .specs-section {
    overflow-x: hidden;
  }

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

  /* Contact page */
  .inquiry-form {
    padding: 32px;
  }

  .modal-content form {
    grid-template-columns: 1fr;
  }

  .quick-contact-buttons {
    flex-direction: column;
  }

  .contact-icon-btn {
    min-width: 100%;
    padding: 20px 24px;
  }

  .contact-icon-btn i {
    font-size: 24px;
  }

  /* Offices grid */
  .offices-grid {
    grid-template-columns: 1fr;
  }
}
