/* ============================================================
   ASIAN WIN TRADING — REDESIGNED STYLESHEET
   Aesthetic: Refined Luxury · Editorial · Minimal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:          #0d2137;
  --navy-mid:      #1a3550;
  --primary:       #0a6e91;
  --primary-mid:   #0d8ab8;
  --primary-light: #1aadd6;
  --primary-pale:  #e8f5fb;
  --primary-soft:  #c4e4f0;
  --gold:          #3cb782;
  --gold-light:    #50d49b;
  --text:          #0d2137;
  --text-mid:      #3a5670;
  --text-light:    #7090a8;
  --white:         #ffffff;
  --off-white:     #f6fafb;
  --light-bg:      #eef6f9;
  --border:        rgba(10,110,145,0.12);
  --border-mid:    rgba(10,110,145,0.22);
  --shadow-sm:     0 2px 20px rgba(13,33,55,0.06);
  --shadow-md:     0 8px 40px rgba(13,33,55,0.10);
  --shadow-lg:     0 20px 70px rgba(13,33,55,0.13);
  --font-display:  'Playfair Display', serif;
  --font-body:     'Outfit', sans-serif;
  --font-mono:     'Space Mono', monospace;
  --radius:        8px;
  --radius-sm:     4px;
  --radius-lg:     16px;
  --transition:    0.32s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: 10px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}
.line-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0;
}
.line-divider.center { margin: 16px auto; }

/* ── SPACING ── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 30px 0; }
.section-pad-small { padding: 20px 0; }

/* ── CHIP / TAG ── */
.chip {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary-soft);
}

/* ── BUTTONS ── */
.btn-primary-c {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-primary-c span, .btn-primary-c i { position: relative; z-index: 1; }
.btn-primary-c:hover::before { transform: scaleX(1); }
.btn-primary-c:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,33,55,0.25); }

.btn-white-c {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-white-c:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.2);
}

.btn-outline-c {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-c:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .divider { margin: 0 16px; opacity: 0.2; }
.topbar i { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(13,33,55,0.10);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.navbar-brand img { height: 75px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.navbar-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.navbar-brand .brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.28s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 500 !important;
  transition: all var(--transition) !important;
  margin-left: 10px;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover {
  background: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,33,55,0.25) !important;
}
.navbar-toggler {
  border: none !important;
  padding: 6px !important;
  box-shadow: none !important;
  outline: none !important;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger span:nth-child(3) { width: 16px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--primary) 100%);
  opacity: 0.97;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.page-hero-circle.c1 { width: 480px; height: 480px; top: -200px; right: -120px; }
.page-hero-circle.c2 { width: 240px; height: 240px; bottom: -100px; left: 8%; }
.page-hero-circle.c3 { width: 120px; height: 120px; top: 60px; right: 25%; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.page-hero p { color: rgba(255,255,255,1); font-size: 14px; line-height: 1.75; max-width: 560px; }
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb-wrap a {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s;
}
.breadcrumb-wrap a:hover { color: var(--gold-light); }
.breadcrumb-wrap .sep { color: rgba(255,255,255,0.25); font-size: 10px; }
.breadcrumb-wrap .current {
  font-family: var(--font-mono);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── STAT BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-item { text-align: center; position: relative; z-index: 2; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-item .lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  min-height: 48px;
}

/* ── FEATURE CARDS ── */
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover .feat-icon { background: var(--navy); color: #fff; }
.feat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--primary);
  transition: all var(--transition);
}
.feat-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 40%, var(--primary) 100%);
  opacity: 0.9;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-band .cta-content { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-band p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.75; max-width: 500px; }
.cta-band-accent {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

/* ── SCROLL REVEAL ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-scale { transform: scale(0.94); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: none; }

/* ── PARTNERS BAR ── */
.partners-bar {
  background: var(--off-white);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0.65;
  transition: opacity .3s;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.partner-logo:hover { opacity: 0.8; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }
  .nav-link { padding: 14px 16px !important; }
  .nav-link::after { bottom: 2px; }
  .btn-nav { margin: 8px 0 4px 16px !important; display: inline-block; }
  .stat-divider { display: none; }
  .navbar-collapse { background: #fff; padding: 10px 0 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
}
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .section-pad-sm { padding: 42px 0; }
  .page-hero { padding: 84px 0 55px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .topbar .d-hide-sm { display: none !important; }
  .partners-bar { padding: 36px 0; }
}
@media (max-width: 480px) {
  .topbar { font-size: 10px; }
  .navbar-brand .brand-name { font-size: 1.05rem; }
  footer { padding: 60px 0 0; }
}


.hero-v1 {
  position: relative;
  height: 70vh;
  max-height: 70vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0d2137;
}

.hero-v1__bg,
.hero-v1__overlay {
  position: absolute;
  inset: 0;
}

.hero-v1__bg {
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.02);
}

.hero-v1__overlay {
  background: linear-gradient(
    90deg,
    rgba(7, 19, 33, 0.72) 0%,
    rgba(7, 19, 33, 0.58) 45%,
    rgba(7, 19, 33, 0.35) 100%
  );
}

.hero-v1__container {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-v1__content {
  max-width: 700px;
  padding: clamp(30px, 8vh, 50px) 0 clamp(40px, 6vh, 70px);
}

.hero-v1__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3cb782;
}

.hero-v1 h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
  max-width: 15ch;
  color: rgba(255, 255, 255, 1);
}

.hero-v1 p {
  max-width: 580px;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 24px;
  text-align: justify;
}

.hero-v1__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-v1__btn {
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 14px;
}

.hero-v1__btn--primary {
  background: #3cb782;
  color: #0d2137;
}

.hero-v1__btn--primary:hover {
  background: var(--primary);
}

.hero-v1__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-v1__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-v1__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.hero-v1__stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}

.hero-v1__stats strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.hero-v1__stats span {
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}


.footer {
  background: linear-gradient(180deg, #0d2137 0%, #091827 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer_top {
  padding: 70px 0 40px;
  position: relative;
  z-index: 2;
}

.footer_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer_logo {
  display: inline-block;
  margin-bottom: 5px;
}

.footer_logo img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.footer_about {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.9;
  max-width: 360px;
  margin: 0;
  text-align: justify;
}

.footer_title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 22px;
  padding-bottom: 12px;
  /* border-bottom: 1px solid rgba(255,255,255,0.08); */
}

.footer_links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_links li {
  margin-bottom: 14px;
}

.footer_links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 18px;
}

.footer_links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.footer_links a:hover {
  color: #fff;
  padding-left: 24px;
}

.footer_links a:hover::before {
  width: 14px;
}

.footer_contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer_contact-item {
  display: flex;
  align-items: center;
  /* gap: 14px; */
}

.footer_icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  /* border-radius: 12px; */
  /* background: rgba(255,255,255,0.06); */
  /* border: 1px solid rgba(255,255,255,0.08); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
}

.footer_label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.footer_contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.footer_contact-item a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer_contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  column-gap: 20px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.section-privacy {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.privacy-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.privacy-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.privacy-col {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .privacy-col {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
}
	
.privacy-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  /* Replacing: .mb-4  → margin-bottom:1.5rem */
  margin-bottom: 1.5rem;
}
.privacy-section-block {
  margin-bottom: 3rem;
}
.privacy-section-block h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #234f7b;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0.5rem;
}
.icon-primary {
  color: #234f7b;
}
.icon-mr {
  margin-right: 0.5rem;
}
.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.privacy-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid #e8e8e8;
  color: #404040;
  line-height: 1.75;
}
.privacy-list li:last-child { border-bottom: none; }
.privacy-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: #234f7b;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.75;
}
.privacy-list strong { color: #234f7b; }
.text-subdued { color: #5B6063; }
.contact-box {
  padding-top: 0.5rem;
  padding-left: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  border: 1px solid #e8e8e8;
  margin-bottom: 10px;
}
.contact-box .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  color: #404040;
  font-size: 0.975rem;
  line-height: 1.6;
}
.contact-box .contact-row-last {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: #404040;
  font-size: 0.975rem;
  line-height: 1.6;
}

.contact-box a { color: #234f7b; text-decoration: none; }
.contact-box a:hover { color: #d4af37; text-decoration: underline; }

.policy-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
}

.policy-section h3 {
  font-size: 1.4rem;
  color: var(--primary);
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0.75rem;
}

.policy-section p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.75;
}

.policy-list strong {
  color: var(--primary);
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--accent);
}

.section-terms {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.terms-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.terms-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.terms-col {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .terms-col {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
}

.terms-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.terms-section-block {
  margin-bottom: 3rem;
}

.terms-section-block h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #234f7b;
  border-bottom: 2px solid #e8e8e8;
  padding-bottom: 0.5rem;
}

.icon-primary {
  color: #234f7b;
}

.icon-mr {
  margin-right: 0.5rem;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.terms-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid #e8e8e8;
  color: #404040;
  line-height: 1.75;
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: #234f7b;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.75;
}

.terms-list strong {
  color: #234f7b;
}

@media (max-width: 991px) {
  .footer_grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer_col:first-child {
    grid-column: auto;
  }

  .footer_about {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer_top {
    padding: 55px 0 30px;
  }

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

  .footer_title {
    margin-bottom: 18px;
  }

  .footer_logo img {
    max-height: 52px;
  }

  .footer_about,
  .footer_links a,
  .footer_contact-item p {
    font-size: 14px;
  }

  .footer_bottom {
    padding: 16px 0;
  }

  .footer_bottom p {
    font-size: 12px;
    line-height: 1.7;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* ============================================================
   index.html — Page-Specific Styles
   ============================================================ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(13,33,55,0.92) 40%, rgba(10,110,145,0.55) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-dots {
  position: absolute;
  right: 44px; top: 50%; transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 2px; height: 18px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all .35s;
}
.hero-dot.active { height: 36px; background: var(--gold-light); }
.hero-content {
  position: relative;
  z-index: 10;
  padding: 130px 0 150px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeUp .9s ease .1s both;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,0.5)} 50%{box-shadow:0 0 0 8px rgba(201,168,76,0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  animation: fadeUp .9s ease .22s both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 16.5px);
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 510px;
  margin-bottom: 40px;
  animation: fadeUp .9s ease .34s both;
  font-weight: 300;
}
.hero-btns {
  animation: fadeUp .9s ease .46s both;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1s both;
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 2px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 2.2s ease infinite;
}
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 75%{transform:translateY(10px);opacity:0} 100%{transform:translateY(0);opacity:0} }
.scroll-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp .9s ease .58s both;
}
.hero-stat { flex: 1; padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 28px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat .n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-stat .l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--primary), var(--navy));
  z-index: 20;
}

/* ── HOME ABOUT ── */
.home-about { background: var(--white); }
.about-img-wrap {
  position: relative;
  /* padding-bottom: 56px; */
  /* padding-right: 56px; */
  border: 4px solid var(--primary);
  border-radius: 14px;
  display: inline-block;
}
.about-img-main {
  width: 100%; height: 550px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 210px; height: 185px;
  object-fit: cover;
  border-radius: var(--radius);
  bottom: 0; right: 0;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  /* top: 48px; left: -28px; */
  /* background: var(--navy); */
  color: var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  /* box-shadow: 0 16px 48px rgba(13,33,55,0.3); */
  z-index: 2;
}
/* .about-badge::before { */
  /* content: ''; */
  /* position: absolute; */
  /* bottom: -1px; right: -1px; */
  /* width: 28px; height: 28px; */
  /* background: var(--gold); */
  /* border-radius: 0 0 var(--radius) 0; */
/* } */
.about-badge .big {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.about-badge .sm {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
  display: block;
}
.about-features { list-style: none; margin: 22px 0 32px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}
.about-features li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.about-features li:last-child { border-bottom: none; }

/* ── PRODUCT MINI CARDS ── */
.products-strip { background: var(--off-white); }
.product-mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}
.product-mini-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-mini-card .img-wrap { height: 200px; overflow: hidden; position: relative; }
.product-mini-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--transition); }
.product-mini-card:hover .img-wrap img { transform: scale(1.08); }
.product-mini-card .card-body-inner { padding: 22px 24px 26px; }
.product-mini-card h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}
.product-mini-card p { font-size: 13.5px; color: var(--text); line-height: 1.65; }
.product-mini-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  color: var(--primary);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  transition: gap .22s;
}
.product-mini-card:hover .card-link { gap: 14px; }

/* ── WHY US ── */
.why-us { background: var(--white); }
.why-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 52px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -80px; right: -80px;
}
.why-visual::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  bottom: -40px; left: 30px;
}
.why-visual .big-letters {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  bottom: 24px; right: 24px;
  font-style: italic;
  font-weight: 700;
}
.why-visual .section-tag { color: var(--gold-light); }
.why-visual .section-tag::before { background: var(--gold-light); }
.why-visual .section-title { color: #fff; }
.why-visual .section-title em { color: var(--gold-light); }
.why-visual .line-divider { background: linear-gradient(90deg, var(--gold), transparent); }
.why-visual p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.85; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-bottom: 12px;
}
.why-card:hover { border-color: var(--primary-soft); box-shadow: var(--shadow-md); transform: translateX(5px); background: #fff; }
.why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  line-height: 1;
  min-width: 28px;
  letter-spacing: 1px;
  padding-top: 2px;
}
.why-card h6 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--off-white); }
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  height: 100%;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  font-style: italic;
}
.testi-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 13.5px; color: var(--navy); }
.author-role { font-family: var(--font-mono); font-size: 11px; color: var(--text-light); letter-spacing: 1px; margin-top: 2px; }
.stars { color: var(--gold); font-size: 12px; margin-bottom: 14px; gap: 3px; display: flex; }

@media(max-width:991px) {
  .about-img-wrap { padding-bottom: 36px; padding-right: 36px; }
  .about-img-main { height: 380px; }
  .about-img-accent { width: 160px; height: 140px; }
  .about-badge { left: 0; top: -20px; }
  .hero-content { padding: 110px 0 130px; }
  .hero-dots { display: none; }
  .hero-stat { padding-right: 18px; margin-right: 18px; }
  .hero-stat .n { font-size: 2rem; }
}
@media(max-width:767px) {
  .about-img-wrap { padding: 0 0 24px; margin-bottom: 24px; }
  .about-badge { position: static; margin-bottom: 20px; display: inline-flex; gap: 12px; align-items: center; }
  .about-badge .big { font-size: 2.2rem; }
  .about-img-accent { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stat { flex: none; padding-right: 20px; margin-right: 20px; }
  .hero-stats { overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .hero-scroll { display: none; }
  .why-visual { padding: 40px 30px; }
}

/* ============================================================
   about.html — Page-Specific Styles
   ============================================================ */

.mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
  transition: height 0.4s ease;
}
.mission-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.mission-card:hover::before { height: 100%; }
.mission-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary);
  margin-bottom: 22px;
  transition: all var(--transition);
}
.mission-card:hover .mission-icon { background: var(--navy); color: #fff; }
.mission-card h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.mission-card p { font-size: 15px; color: var(--text-mid); line-height: 1.8; text-align:justify;}

.timeline { position: relative; padding-left: 10px; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--primary-soft), transparent); }
.timeline-item { display: flex; gap: 28px; margin-bottom: 32px; position: relative; }
.timeline-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(13,33,55,0.2);
  transition: all var(--transition);
}
.timeline-item:hover .timeline-dot { background: var(--primary); transform: scale(1.1); }
.timeline-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  transition: all var(--transition);
}
.timeline-content:hover { border-color: var(--primary-soft); box-shadow: var(--shadow-md); }
.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-content h5 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 15px; color: var(--text-light); line-height: 1.65; margin: 0; }

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.team-avatar {
  height: 180px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.15);
  font-style: italic;
  font-weight: 700;
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
}
.team-card-body { padding: 20px 20px; }
.team-card h5 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.team-card p { font-size: 14px; color: var(--text); line-height: 1.65; }

.value-item {
  display: flex;
  gap: 20px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.value-item:hover { border-color: var(--primary-soft); box-shadow: var(--shadow-md); transform: translateX(4px); }
.value-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}
.value-item:hover .value-icon { background: var(--navy); color: #fff; }
.value-item h5 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 5px; letter-spacing: -0.01em; }
.value-item p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin: 0; }

.cert-badge {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.cert-badge:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-badge:hover i, .cert-badge:hover span { color: #fff !important; }
.cert-badge i { font-size: 22px; color: var(--primary); display: block; margin-bottom: 10px; transition: color .3s; }
.cert-badge span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
  display: block;
  transition: color .3s;
}

/* ============================================================
   products.html — Page-Specific Styles
   ============================================================ */

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border-mid);
  border-radius: 30px;
  background: #fff;
  color: var(--text-mid);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13,33,55,0.22);
}

.product-item { transition: opacity .3s, transform .3s; }
.product-card-full {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}
.product-card-full:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); border-color: transparent; }
.prod-img-wrap { height: 230px; overflow: hidden; position: relative; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--transition); }
.product-card-full:hover .prod-img-wrap img { transform: scale(1.07); }
.prod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.product-card-full:hover .prod-overlay { opacity: 1; }
.prod-overlay-tag {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.prod-body { padding: 24px 26px 28px; }
.prod-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 10px 0;
  letter-spacing: -0.02em;
}
.prod-body p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.prod-features { list-style: none; margin-bottom: 20px; }
.prod-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.prod-features li:last-child { border: none; }
.prod-features li i { color: var(--gold); font-size: 10px; flex-shrink: 0; }

.featured-product {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.featured-product::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -150px; right: -150px;
}
.featured-product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--primary) 100%);
  opacity: 0.8;
}
.featured-product-content { position: relative; z-index: 2; }
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.featured-product .section-title { color: #fff; }
.featured-product .section-title em { color: var(--gold-light); }
.featured-product .line-divider { background: linear-gradient(90deg, var(--gold), transparent); }
.featured-product p { color: rgba(255,255,255,0.7); }

@media(max-width:767px) {
  .featured-product { padding: 36px 28px; }
}

/* ============================================================
   contact.html — Page-Specific Styles
   ============================================================ */

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 52px 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -120px; right: -100px;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  bottom: -70px; left: -50px;
}
.contact-info-content { position: relative; z-index: 2; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.contact-info-card .sub { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.75; margin-bottom: 40px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: all .25s;
}
.info-item:hover .info-icon { background: var(--primary); border-color: var(--primary); }
.info-text .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.info-text a, .info-text span {
  color: rgba(255,255,255,0.9);
  font-size: 14.5px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.55;
  display: block;
  transition: color .2s;
}
.info-text a:hover { color: var(--gold-light); }
.contact-socials { display: flex; gap: 10px; margin-top: 40px; }
.contact-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: all .25s;
  text-decoration: none;
}
.contact-social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 48px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 520;
  margin-bottom: 8px;
  display: block;
}
.form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  transition: all var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10,110,145,0.08);
}
.form-control::placeholder { color: var(--text-light); font-size: 13.5px; }
textarea.form-control { resize: none; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 16px 38px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}
.submit-btn:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,33,55,0.2); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

@media(max-width:767px) {
  .contact-info-card { padding: 40px 30px; }
  .contact-form-wrap { padding: 36px 28px; }
}

/* ── BACK TO TOP (shared across all pages) ── */
#backToTop.visible{opacity:1;pointer-events:auto;} #backToTop:hover{background:var(--primary);transform:translateY(-3px);
  .hero-v1 {
    height: 80vh;
    min-height: 560px;
  }

  .hero-v1__content {
    max-width: 620px;
    padding: 90px 0 50px;
  }

  .hero-v1 {
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .hero-v1__content {
    padding: 95px 0 60px;
  }

  .hero-v1 h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-v1 p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .hero-v1__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-v1__btn {
    width: 100%;
    text-align: center;
  }

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



.mvv-section {
      background: var(--off-white);
      padding: 32px 24px 32px;
    }

    /* ── Header ── */
    .mvv-header {
      text-align: center;
      margin-bottom: 56px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s 0.1s ease forwards;
    }

    /* .section-tag { */
      /* display: inline-flex; */
      /* align-items: center; */
      /* gap: 10px; */
      /* font-size: 12px; */
      /* font-weight: 700; */
      /* letter-spacing: 3px; */
      /* text-transform: uppercase; */
      /* color: var(--primary-mid); */
      /* margin-bottom: 14px; */
    /* } */
    /* .section-tag::before { */
      /* content: ''; */
      /* width: 28px; height: 2px; */
      /* background: var(--gold); */
      /* border-radius: 2px; */
    /* } */

    /* .section-title { */
      /* font-size: clamp(1.9rem, 3.5vw, 2.5rem); */
      /* font-weight: 700; */
      /* color: var(--navy); */
      /* line-height: 1.22; */
      /* letter-spacing: -0.02em; */
    /* } */
    /* .section-title em { */
      /* font-style: italic; */
      /* color: var(--primary); */
    /* } */

    /* ── Grid ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 1120px;
      margin: 0 auto;
    }

    /* ── Card ── */
    .mvv-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      opacity: 0;
      transform: translateY(32px);
      transition:
        box-shadow var(--transition),
        transform  var(--transition);
    }
    .mvv-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition:
        opacity    0.6s ease,
        transform  0.6s ease,
        box-shadow var(--transition);
    }
    .mvv-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow-lg);
    }

    /* ── Image wrapper ── */
    .card-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s ease;
    }
    .mvv-card:hover .card-img-wrap img {
      transform: scale(1.07);
    }
    .card-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg,rgba(10,22,40,.50) 0%,rgba(10,22,40,.12) 100%);
      transition: opacity var(--transition);
    }
    .mvv-card:hover .card-img-overlay { opacity: .75; }

    /* ── Frosted badge ── */
    .card-badge {
      position: absolute;
      top: 14px; left: 14px;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.32);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
    }

    /* ── Floating icon ── */
    .card-icon-float {
      position: absolute;
      bottom: 5px; right: 20px;
      width: 42px; height: 42px;
      border-radius: 14px;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      color: #fff;
      border: 3px solid #fff;
      box-shadow: 0 4px 18px rgba(10,22,40,.28);
      transition: background var(--transition), transform var(--transition);
      z-index: 2;
    }
    .mvv-card:hover .card-icon-float {
      background: var(--gold);
      transform: rotate(8deg) scale(1.1);
    }

    /* ── Card body ── */
    .card-body {
      padding: 38px 22px 26px;
      flex: 1;
      position: relative;
    }

    /* Dot-grid watermark */
    .card-body::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 90px; height: 90px;
      background-image: radial-gradient(circle, rgba(10,22,40,.09) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      pointer-events: none;
    }

    /* Animated accent bar */
    .accent-line {
      width: 32px; height: 3px;
      background: linear-gradient(to right, var(--gold), var(--primary));
      border-radius: 3px;
      margin-bottom: 14px;
      transition: width 0.45s 0.05s ease;
    }
    .mvv-card:hover .accent-line { width: 52px; }

    .card-body h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .card-body p {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.82;
      text-align: justify;
    }

    /* Footer tag */
    .card-footer-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: gap var(--transition), color var(--transition);
    }
    .mvv-card:hover .card-footer-tag {
      gap: 10px;
      color: var(--gold);
    }
    .card-footer-tag i { font-size: 10px; }

    /* ── Keyframes ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .mvv-section { padding: 48px 16px 56px; }
      .cards-grid   { gap: 20px; }
    }
