/* ════════════════════════════════════════
   SIMO SECURITY & CONSULTING LLC
   Premium Security Website — Gold Edition
   ════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #07080f;
  --bg2:         #0a0c17;
  --bg3:         #0e1120;
  --surface:     rgba(14, 17, 32, 0.85);
  --surface2:    rgba(10, 12, 23, 0.92);

  --navy:        #0d1b2a;
  --navy2:       #0e2240;
  --navy3:       #1a3055;

  --gold:        #c9a84c;
  --gold-lt:     #e0c06a;
  --gold-dk:     #a08030;
  --gold-glow:   rgba(201, 168, 76, 0.18);
  --gold-border: rgba(201, 168, 76, 0.25);
  --gold-border2:rgba(201, 168, 76, 0.12);

  --text:        #f0f2ff;
  --muted:       rgba(240, 242, 255, 0.7);
  --dim:         rgba(240, 242, 255, 0.42);

  --border:      rgba(201, 168, 76, 0.18);
  --border-sub:  rgba(255, 255, 255, 0.07);

  --radius:      16px;
  --radius-lg:   24px;
  --shadow:      0 24px 64px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.22);
  --trans:       0.26s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════
   UTILITY CLASSES
═══════════════════════════ */
.gold-text { color: var(--gold); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--gold-border2);
  background: rgba(201, 168, 76, 0.08);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted); max-width: 66ch; font-size: 1.05rem;
}

.body-text {
  color: var(--muted); margin-bottom: 14px; font-size: 1.02rem;
}

.section-header {
  text-align: center; margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

.section { padding: 96px 0; }

.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14, 34, 64, 0.6) 0%, transparent 70%),
    var(--bg2);
}

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 22px;
  border-radius: 999px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #0a0a0a; border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.38);
}

.btn-outline {
  background: transparent; color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ═══════════════════════════
   HEADER / NAVBAR
═══════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(7, 8, 15, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border-sub);
  transition: background var(--trans), box-shadow var(--trans);
}
#header.scrolled {
  background: rgba(7, 8, 15, 0.96);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--gold-border2);
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-shield {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.2rem; color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--gold-border);
  transition: box-shadow var(--trans);
}
.brand:hover .logo-shield { box-shadow: 0 0 20px rgba(201, 168, 76, 0.3); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; }
.brand-sub { font-size: 0.73rem; color: var(--muted); font-weight: 500; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 12px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a[aria-current="page"] { color: var(--text); background: rgba(201, 168, 76, 0.1); }
.nav-links .nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(201, 168, 76, 0.05);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.24s, opacity 0.24s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 16px 18px;
  border-top: 1px solid var(--border-sub);
  background: rgba(7, 8, 15, 0.98);
}
.mobile-nav.open {
  display: flex;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
}
.mob-link {
  padding: 11px 14px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--trans), background var(--trans);
}
.mob-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.mob-link[aria-current="page"] { color: var(--text); background: rgba(201, 168, 76, 0.1); }
.mob-cta { margin-top: 8px; text-align: center; border-radius: 999px; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(7, 8, 15, 0.88) 0%, rgba(13, 27, 42, 0.7) 50%, rgba(7, 8, 15, 0.92) 100%),
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),
    /* simo-hero.jpg es en realidad un PNG de 2.3 MB. El WebP es la misma imagen
       a 1536x1024 en 118 KB: 95% menos de descarga en cada visita al inicio. */
    url('./assents/simo-hero.webp') center / cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(13, 27, 42, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-border2);
  background: rgba(201, 168, 76, 0.07);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(201, 168, 76, 0.6); }
  50%       { box-shadow: 0 0 16px rgba(201, 168, 76, 0.9); }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 20px; line-height: 1.06;
}

.hero-sub {
  color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 58ch; margin-bottom: 36px; line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding: 20px 28px;
  background: rgba(10, 12, 23, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border2);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.h-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 28px;
}
.h-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.9rem; color: var(--gold); line-height: 1;
}
.h-lbl {
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted); margin-top: 4px;
  white-space: nowrap;
}
.h-div { width: 1px; height: 44px; background: var(--border); }

.hero-scroll-btn {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--gold-border);
  background: rgba(201, 168, 76, 0.07);
  color: var(--gold); font-size: 0.85rem;
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════
   TRUST BAR
═══════════════════════════ */
.trust-bar {
  background: linear-gradient(90deg, rgba(14, 34, 64, 0.9), rgba(10, 12, 23, 0.95));
  border-top: 1px solid var(--gold-border2);
  border-bottom: 1px solid var(--gold-border2);
  padding: 18px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 22px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.04em; color: var(--muted);
  transition: color var(--trans);
}
.trust-item:hover { color: var(--gold); }
.trust-item i { color: var(--gold); font-size: 0.95rem; }
.trust-sep { width: 1px; height: 22px; background: var(--border); flex-shrink: 0; }

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

/* Shield graphic */
.about-visual { display: flex; align-items: center; justify-content: center; }
.shield-graphic {
  position: relative; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.shield-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--gold-border2);
  animation: ring-spin 20s linear infinite;
}
.ring-1 { width: 260px; height: 260px; animation-duration: 18s; }
.ring-2 { width: 300px; height: 300px; animation-duration: 26s; animation-direction: reverse; }
.ring-3 { width: 340px; height: 340px; animation-duration: 34s; border-style: dashed; opacity: 0.5; }
@keyframes ring-spin { to { transform: rotate(360deg); } }

.shield-core {
  position: relative; z-index: 2;
  width: 200px; height: 200px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 40% 35%, rgba(201, 168, 76, 0.18), rgba(14, 34, 64, 0.8));
  border: 2px solid var(--gold-border);
  box-shadow: 0 0 48px rgba(201, 168, 76, 0.15), inset 0 0 30px rgba(201, 168, 76, 0.08);
}
.shield-core i { font-size: 3rem; color: var(--gold); margin-bottom: 6px; }
.shield-years-wrap { display: flex; flex-direction: column; align-items: center; }
.shield-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.shield-yrs { font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

.float-badge {
  position: absolute; padding: 8px 14px; border-radius: 999px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  background: rgba(14, 34, 64, 0.9); border: 1px solid var(--gold-border);
  color: var(--gold); white-space: nowrap;
  animation: float-y 4s ease-in-out infinite;
}
.float-badge i { margin-right: 5px; }
.fb-top { top: 16px; right: -20px; animation-delay: 0s; }
.fb-bot { bottom: 16px; left: -20px; animation-delay: 1.8s; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.check-list { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 32px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 0.97rem; }
.check-item i { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }

/* ═══════════════════════════
   SERVICES
═══════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(160deg, rgba(14, 17, 32, 0.9), rgba(10, 12, 23, 0.95));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-border2); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.07); }
.service-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.5rem; color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold-border2);
  margin-bottom: 20px;
  transition: background var(--trans), box-shadow var(--trans);
}
.service-card:hover .svc-icon-wrap {
  background: rgba(201, 168, 76, 0.16);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.service-card h3 {
  font-size: 1.2rem; font-weight: 800; margin-bottom: 12px;
}
.service-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

.svc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-list li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--muted); }
.svc-list li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

.svc-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--gold);
  transition: gap var(--trans), opacity var(--trans);
}
.svc-link:hover { gap: 11px; opacity: 0.85; }

/* ═══════════════════════════
   WHY CHOOSE US
═══════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: linear-gradient(160deg, rgba(14, 17, 32, 0.8), rgba(10, 12, 23, 0.9));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(201,168,76,0.06);
}

.why-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 3rem;
  color: rgba(201, 168, 76, 0.09); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.why-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.35rem; color: var(--gold);
  background: rgba(201, 168, 76, 0.1); border: 1px solid var(--gold-border2);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }
.why-card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ═══════════════════════════
   PORTALS
═══════════════════════════ */
.portals-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.portal-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(14, 17, 32, 0.92), rgba(10, 12, 23, 0.98));
  border-radius: var(--radius-lg); padding: 48px 40px;
  border: 1px solid var(--border-sub);
  transition: transform var(--trans), box-shadow var(--trans);
}
.portal-card:hover { transform: translateY(-5px); }

.portal-client { border-top: 3px solid var(--gold); }
.portal-employee { border-top: 3px solid rgba(255,255,255,0.18); }

.portal-glow {
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  pointer-events: none;
}
.portal-client .portal-glow { background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); }
.portal-employee .portal-glow { background: radial-gradient(circle, rgba(100,150,255,0.08) 0%, transparent 70%); }

.portal-icon {
  width: 68px; height: 68px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.7rem;
  margin-bottom: 24px;
}
.portal-client .portal-icon { color: var(--gold); background: rgba(201,168,76,0.12); border: 1px solid var(--gold-border); }
.portal-employee .portal-icon { color: #a0b8ff; background: rgba(100,150,255,0.08); border: 1px solid rgba(100,150,255,0.18); }

.portal-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.portal-card p  { color: var(--muted); margin-bottom: 24px; font-size: 0.97rem; }

.portal-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.portal-list li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--muted); }
.portal-client  .portal-list li i { color: var(--gold); }
.portal-employee .portal-list li i { color: #7099ff; }

/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: linear-gradient(160deg, rgba(14, 17, 32, 0.85), rgba(10, 12, 23, 0.92));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform var(--trans), border-color var(--trans);
  position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 18px; right: 24px;
  font-size: 4rem; color: var(--gold); opacity: 0.15;
  font-family: Georgia, serif; line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--gold-border2); }
.expectation-card::before { content: none; }
.expectation-card h3 { margin-bottom: 12px; font-size: 1.08rem; font-weight: 800; }
.section-actions { margin-top: 28px; display: flex; justify-content: center; }

.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.author-av {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem;
  background: linear-gradient(135deg, var(--gold-dk), var(--navy2));
  border: 2px solid var(--gold-border);
  color: var(--text);
}
.author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.92rem; }
.author-role { font-size: 0.8rem; color: var(--dim); margin-top: 2px; }

/* ═══════════════════════════
   CONTACT
═══════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
.contact-grid > *,
.form-row-2 > * { min-width: 0; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1rem;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border2);
}
.c-label { font-size: 0.78rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
.c-value { font-size: 1rem; font-weight: 600; color: var(--text); transition: color var(--trans); }
a.c-value:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: linear-gradient(160deg, rgba(14,17,32,0.9), rgba(10,12,23,0.96));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg); padding: 40px;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border-radius: 12px; border: 1px solid var(--border-sub);
  background: rgba(255,255,255,0.04); color: var(--text);
  font-family: 'Open Sans', sans-serif; font-size: 0.95rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center; margin-top: 14px;
  font-size: 0.8rem; color: var(--dim);
}
.form-note i { margin-right: 6px; color: var(--gold); }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--gold-border2);
  padding: 72px 0 0;
}

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

.footer-brand-logo { margin-bottom: 18px; }
.footer-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 0.9rem;
  border: 1px solid var(--border-sub); color: var(--muted);
  transition: color var(--trans), border-color var(--trans), background var(--trans);
}
.social-btn:hover { color: var(--gold); border-color: var(--gold-border); background: rgba(201,168,76,0.07); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.footer-h4-gap { margin-top: 28px !important; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--muted); font-size: 0.92rem;
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-sub); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--dim); }
.footer-license { color: var(--muted) !important; }

/* ═══════════════════════════
   TOAST
═══════════════════════════ */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  padding: 14px 22px; border-radius: 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 360px;
}
.toast.show {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.toast.success {
  background: rgba(40, 180, 100, 0.95); color: #fff;
  border: 1px solid rgba(40, 200, 110, 0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.error {
  background: rgba(220, 60, 60, 0.95); color: #fff;
  border: 1px solid rgba(240, 70, 70, 0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ═══════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════ */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].visible {
  opacity: 1; transform: none;
}

/* ═══════════════════════════
   PORTAL PAGES (shared)
═══════════════════════════ */
.portal-page {
  min-height: 100vh; background: var(--bg);
  display: flex; flex-direction: column;
}
.portal-page .pheader {
  background: rgba(7, 8, 15, 0.96);
  border-bottom: 1px solid var(--gold-border2);
  padding: 16px 0;
}
.pheader-inner {
  display: flex; align-items: center; justify-content: space-between;
}

/* Login box */
.login-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(14,34,64,0.4) 0%, transparent 70%),
    var(--bg);
}
.login-box {
  width: 100%; max-width: 440px;
  background: linear-gradient(160deg, rgba(14,17,32,0.95), rgba(10,12,23,0.98));
  border: 1px solid var(--border-sub);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 44px 40px;
}
.login-box .portal-icon { margin: 0 auto 24px; }
.login-title {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.5rem; text-align: center; margin-bottom: 6px;
}
.login-sub { color: var(--muted); text-align: center; font-size: 0.9rem; margin-bottom: 28px; }

.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-form .form-group { margin-bottom: 0; }
.login-form label { color: var(--muted); }
.login-form input {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--border-sub); background: rgba(255,255,255,0.04);
  color: var(--text); font-size: 0.95rem; outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.login-form input:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.login-note {
  text-align: center; font-size: 0.78rem; color: var(--dim); margin-top: 4px;
}
.login-note a { color: var(--gold); }

/* Dashboard */
.dashboard { display: none; flex: 1; padding: 32px 0 64px; }
.dashboard.active { display: block; }
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 32px;
}
.dash-welcome h2 { font-size: 1.5rem; font-weight: 800; }
.dash-welcome p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

.stat-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: linear-gradient(160deg, rgba(14,17,32,0.9), rgba(10,12,23,0.95));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1rem;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border2); margin-bottom: 10px;
}
.stat-card-val {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--gold);
}
.stat-card-lbl { font-size: 0.82rem; color: var(--muted); }

.dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.dash-panel {
  background: linear-gradient(160deg, rgba(14,17,32,0.9), rgba(10,12,23,0.95));
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg); overflow: hidden;
}
.dash-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-sub);
}
.dash-panel-header h3 { font-size: 0.95rem; font-weight: 800; }
.dash-badge {
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid var(--gold-border2);
}
.dash-rows { padding: 8px 0; }
.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--trans);
}
.dash-row:last-child { border-bottom: none; }
.dash-row:hover { background: rgba(255,255,255,0.02); }
.dash-row-info { display: flex; flex-direction: column; gap: 3px; }
.dash-row-title { font-weight: 600; font-size: 0.9rem; }
.dash-row-sub { font-size: 0.78rem; color: var(--dim); }
.status-pill {
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.status-active { background: rgba(40,180,100,0.15); color: #4ddb88; border: 1px solid rgba(40,200,110,0.2); }
.status-pending { background: rgba(201,168,76,0.12); color: var(--gold); border: 1px solid var(--gold-border2); }
.status-complete { background: rgba(100,150,255,0.12); color: #8aabff; border: 1px solid rgba(100,150,255,0.2); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {

  .hero-stats { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .h-div { width: 1px; height: 36px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .shield-graphic { width: 280px; height: 280px; }
  .ring-1 { width: 220px; height: 220px; }
  .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 300px; height: 300px; }

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

  .portals-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; gap: 18px; }

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

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

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 8px; }
  .h-stat { padding: 0 14px; }
  .h-num { font-size: 1.5rem; }

  .trust-inner { gap: 4px; }
  .trust-item { padding: 6px 10px; font-size: 0.76rem; }
  .trust-sep { height: 18px; }

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

  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stat-cards { grid-template-columns: 1fr 1fr; }

  .login-box { padding: 32px 24px; }
}
