/* ═══════════════════════════════════════════════════════════
   LIKONET SECURITY — Public Website CSS  v2.0
   Light / Dark mode via [data-theme] on <html>
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --gold:         #C8A84B;
  --gold-light:   #E2C46A;
  --gold-dark:    #9E7E2A;
  --gold-muted:   rgba(200,168,75,.12);
  --bg:           #0A0C10;
  --surface:      #111318;
  --surface-alt:  #161A22;
  --card-bg:      #111318;
  --card-border:  rgba(255,255,255,.07);
  --text-p:       #F0EDE8;
  --text-s:       #A8A49C;
  --text-m:       #5C5850;
  --text-secondary: #A8A49C;
  --text-muted:   #5C5850;
  --text-primary: #F0EDE8;
  --red:          #E03A3A;
  --green:        #22C55E;
  --navy:         #0A0C10;
  --navy-mid:     #111318;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── LIGHT THEME (default) ── */
[data-theme="light"] {
  --bg:             #FDFDFC;
  --bg-alt:         #f8f9fa;
  --surface:        #ffffff;
  --surface-alt:    #f1f3f4;
  --border:         rgba(26,26,0,0.16);
  --border-hover:   rgba(200,168,75,0.3);
  --text-primary:   #1b1b18;
  --text-secondary: #706f6c;
  --text-muted:     #5C5850;
  --nav-bg:         rgba(255,255,255,0.96);
  --card-bg:        #ffffff;
  --card-border:    rgba(26,26,0,0.16);
  --hero-bg:        #0A0C10;
  --shadow:         0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.16);
  --input-bg:       #ffffff;
  --input-border:   rgba(26,26,0,0.16);
  --footer-bg:      #0A0C10;
  --section-accent: #f8f9fa;
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --bg:             #0A0C10;
  --bg-alt:         #111318;
  --surface:        #111318;
  --surface-alt:    #161A22;
  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(200,168,75,0.3);
  --text-primary:   #F0EDE8;
  --text-secondary: #A8A49C;
  --text-muted:     #5C5850;
  --nav-bg:         rgba(10,12,16,0.95);
  --card-bg:        #111318;
  --card-border:    rgba(255,255,255,0.07);
  --hero-bg:        #0A0C10;
  --shadow:         0 4px 24px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.6);
  --input-bg:       rgba(255,255,255,0.05);
  --input-border:   rgba(255,255,255,0.12);
  --footer-bg:      #0A0C10;
  --section-accent: rgba(255,255,255,0.02);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.25; color: var(--text-primary); }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }

/* ══════════════════ NAVBAR ══════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: var(--border-hover); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 18px; color: #fff;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}
.nav-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 18px; letter-spacing: 0.05em; }
.nav-logo-sub  { font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: -2px; }

/* Image logo — shown when logo.png exists */
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* Keep logo readable on dark hero/nav backgrounds */
  filter: none;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.88; }

/* On dark backgrounds (hero, footer, mobile nav) ensure logo is visible */
[data-theme="light"] .site-nav .nav-logo-img {
  /* light nav — logo should render normally */
  filter: none;
}
[data-theme="dark"] .site-nav .nav-logo-img {
  /* dark nav — brighten slightly if needed */
  filter: brightness(1.05);
}

/* Footer image logo */
.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* Footer is always dark, so invert dark logos */
  filter: brightness(10) grayscale(1);
  opacity: 0.9;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  border-radius: 8px; transition: all var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
[data-theme="light"] .nav-links a.active { background: rgba(201,168,76,0.08); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.theme-toggle {
  width: 38px; height: 38px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); transform: rotate(20deg); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border: none; border-radius: 10px; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); background: linear-gradient(135deg, #d4b05a, #b8941f); color: #fff; }
.btn-primary-lg { padding: 15px 36px; font-size: 15px; border-radius: 12px; }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  background: transparent; color: var(--text-primary);
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  background: transparent; color: var(--gold);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  border: 1.5px solid rgba(201,168,76,0.4); border-radius: 10px;
  cursor: pointer; transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center;
  padding: 13px 28px;
  background: #ffffff; color: var(--navy);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  border: none; border-radius: 10px; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); background: #f8f8f8; color: var(--navy); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 999;
  flex-direction: column; gap: 4px;
  animation: slideDown 0.2s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; color: var(--text-secondary); font-weight: 500; border-radius: 8px; transition: all var(--transition); }
.nav-mobile a:hover, .nav-mobile a.active { background: rgba(201,168,76,0.08); color: var(--gold); }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════ LAYOUT ══════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
[data-theme="light"] .section-alt { background: var(--bg-alt); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
[data-theme="light"] .section-label { background: rgba(201,168,76,0.12); }

.section-title { font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--gold); }
.section-subtitle { font-size: 17px; color: var(--text-secondary); max-width: 560px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-bottom: 28px; }
.text-center .gold-line { margin: 0 auto 28px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ══════════════════ HERO ══════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1590274853856-f22d5ee3d228?auto=format&fit=crop&w=1920&q=60');
  background-size: cover; background-position: center 30%;
  opacity: 0.18;
}
[data-theme="light"] .hero-bg-img { opacity: 0.15; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,24,50,0.96) 0%, rgba(15,36,69,0.85) 50%, rgba(10,24,50,0.7) 100%);
}
.hero-grid {
  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: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 4px rgba(34,197,94,0.2)} 50%{box-shadow:0 0 0 8px rgba(34,197,94,0.1)} }

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.1;
  color: #ffffff; margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }

.hero-desc { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 36px; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-item { }
.hero-stat-num { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: #ffffff; line-height: 1; margin-bottom: 4px; }
.hero-stat-num .gold { color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; }

/* Hero right visual */
.hero-visual { position: relative; z-index: 1; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,24,50,0.8) 100%);
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  white-space: nowrap;
}
.hero-float-card.card-tl { top: 20px; left: -20px; }
.hero-float-card.card-br { bottom: 80px; right: -20px; }
.hero-float-card.card-live { top: 20px; right: 16px; }
.hero-float-icon { font-size: 20px; margin-bottom: 4px; }
.hero-float-num { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #ffffff; line-height: 1; }
.hero-float-lbl { font-size: 11px; color: rgba(255,255,255,0.6); }
.live-badge-hero {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #22c55e;
}
.live-dot-hero {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulseDot 2s infinite;
}

/* ══════════════════ TRUST BAR ══════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
[data-theme="light"] .trust-bar { background: #fff; box-shadow: 0 1px 0 var(--border); }
.trust-bar-inner { display: flex; align-items: center; gap: 24px; }
.trust-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; padding-right: 24px; border-right: 1px solid var(--border); flex-shrink: 0; }
.trust-logos { display: flex; gap: 0; overflow: hidden; flex: 1; }
.trust-track {
  display: flex; gap: 40px; animation: marquee 28s linear infinite;
  align-items: center;
}
.trust-logo-item {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  color: var(--text-muted); white-space: nowrap; letter-spacing: 0.04em;
  padding: 6px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}
.trust-logo-item:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════ SERVICES GRID ══════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
[data-theme="light"] .service-card { box-shadow: var(--shadow); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
  background: rgba(201,168,76,0.1);
  margin-bottom: 20px; transition: all var(--transition);
}
[data-theme="light"] .service-icon { background: rgba(201,168,76,0.12); box-shadow: 0 4px 12px rgba(201,168,76,0.15); }
.service-card:hover .service-icon { background: var(--gold); color: #fff; transform: scale(1.05); }
.service-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.service-link  { font-size: 13px; color: var(--text-muted); font-weight: 600; transition: all var(--transition); }
.service-card:hover .service-link { color: var(--gold); }

/* ══════════════════ FEATURE GRID / WHY US ══════════════════ */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: all var(--transition);
}
[data-theme="light"] .feature-item { box-shadow: var(--shadow); }
.feature-item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.feature-icon-box {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.feature-item-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-item-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Feature image panel */
.feature-img-panel {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature-img-panel img { width: 100%; height: 480px; object-fit: cover; display: block; }
.feature-img-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
}
.feature-img-badge .badge-num { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--gold); }
.feature-img-badge .badge-txt { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* Stats visual (about page) */
.stats-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
[data-theme="light"] .stat-box { box-shadow: var(--shadow); }
.stat-box:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ══════════════════ STATS BANNER ══════════════════ */
.stats-banner {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 72px 0;
}
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=40') center/cover no-repeat;
  opacity: 0.07;
}
.stats-banner-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; position: relative; z-index: 1;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-banner-item {
  background: rgba(10,24,50,0.9);
  padding: 40px 24px; text-align: center;
  transition: background var(--transition);
}
.stat-banner-item:hover { background: rgba(20,44,80,0.95); }
.stat-banner-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 10px;
}
.stat-banner-lbl { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 600; }
.stat-banner-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }

/* ══════════════════ SECURITY FEATURE PANELS ══════════════════ */
.security-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.security-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  transition: transform var(--transition);
}
.security-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.security-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.security-panel:hover img { transform: scale(1.05); }
.security-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,24,50,0.95) 0%, rgba(10,24,50,0.4) 60%, transparent 100%);
}
.security-panel-content {
  position: relative; z-index: 1;
  padding: 28px; width: 100%;
}
.security-panel-icon { font-size: 28px; color: var(--gold); margin-bottom: 10px; }
.security-panel-title { font-size: 18px; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.security-panel-desc  { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.security-panel-large { grid-column: span 2; min-height: 400px; }

/* ══════════════════ PROCESS STEPS ══════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.process-step {
  text-align: center; padding: 0 12px;
}
.process-step:hover .process-num { background: var(--gold); color: #fff; transform: scale(1.1); }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
  color: var(--gold); background: var(--card-bg);
  border: 2px solid rgba(201,168,76,0.3);
  margin: 0 auto 20px; transition: all var(--transition);
}
[data-theme="light"] .process-num { box-shadow: var(--shadow); }
.process-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Process cards (careers / contact) */
.process-card {
  text-align: center; padding: 32px 20px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); transition: all var(--transition);
}
[data-theme="light"] .process-card { box-shadow: var(--shadow); }
.process-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-card .process-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.3); margin: 0 auto 16px;
  transition: all var(--transition);
}
.process-card:hover .process-num { background: var(--gold); color: #fff; border-color: var(--gold); }
.process-card .process-icon { font-size: 28px; color: var(--gold); opacity: 0.7; margin-bottom: 14px; }
.process-card .process-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-card .process-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════ TESTIMONIALS ══════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); position: relative;
}
[data-theme="light"] .testimonial-card { box-shadow: var(--shadow); }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-size: 80px; font-family: Georgia, serif; color: var(--gold);
  opacity: 0.1; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  color: #fff; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ══════════════════ CTA BANNER ══════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 72px 56px;
  text-align: center; position: relative; overflow: hidden;
}
[data-theme="light"] .cta-banner { box-shadow: var(--shadow-lg); }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504439468489-c8920d796a29?auto=format&fit=crop&w=1600&q=30');
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner-title { font-size: clamp(24px,3.5vw,40px); font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.cta-banner-desc  { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════ BLOG ══════════════════ */
.blog-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2); padding: 3px 10px; border-radius: 100px;
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
[data-theme="light"] .blog-card { box-shadow: var(--shadow); }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 24px; }
.blog-card-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-card-link { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-card:hover .blog-card-link { gap: 10px; }

/* Featured post */
.featured-post { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
[data-theme="light"] .featured-post { box-shadow: var(--shadow-lg); }
.featured-post:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.featured-post-visual { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); min-height: 320px; display: flex; align-items: center; justify-content: center; }
.featured-post-content { padding: 40px; }
.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn { padding: 8px 20px; background: var(--card-bg); border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold); }
.article-body { font-size: 16px; line-height: 1.85; color: var(--text-secondary); }
.article-body h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; }
.article-body p { margin-bottom: 18px; }

/* ══════════════════ CAREERS ══════════════════ */
.perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.perk-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all var(--transition); }
[data-theme="light"] .perk-card { box-shadow: var(--shadow); }
.perk-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.perk-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); background: rgba(201,168,76,0.1); margin-bottom: 18px; }
.perk-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.perk-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
[data-theme="light"] .job-card { box-shadow: var(--shadow); }
.job-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.job-card-main { display: flex; align-items: center; gap: 20px; padding: 24px 28px; flex-wrap: wrap; }
.job-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); background: rgba(201,168,76,0.1); }
.job-info { flex: 1; min-width: 200px; }
.job-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.job-meta i { color: var(--gold); margin-right: 4px; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-tags .job-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; background: var(--surface-alt); border: 1px solid var(--border); color: var(--text-secondary); }
.job-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }

/* ══════════════════ CONTACT ══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-block { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px; }
[data-theme="light"] .contact-info-block { box-shadow: var(--shadow); }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; text-decoration: none; color: var(--text-primary); transition: all var(--transition); }
.contact-method:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.contact-method-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); background: rgba(201,168,76,0.1); }
.contact-form-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 40px; }
[data-theme="light"] .contact-form-card { box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 12px 16px;
  background: var(--input-bg); border: 1.5px solid var(--input-border);
  border-radius: 10px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 14px;
  transition: all var(--transition); outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.input-error { border-color: #ef4444 !important; }
.trust-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.trust-item { text-align: center; padding: 28px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); transition: all var(--transition); }
[data-theme="light"] .trust-item { box-shadow: var(--shadow); }
.trust-item:hover { border-color: var(--border-hover); }

/* ══════════════════ ABOUT PAGE ══════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.team-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all var(--transition); }
[data-theme="light"] .team-card { box-shadow: var(--shadow); }
.team-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 28px; color: #fff; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.team-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 10px; }
.team-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all var(--transition); }
[data-theme="light"] .value-card { box-shadow: var(--shadow); }
.value-card:hover { border-color: var(--border-hover); }
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.value-desc  { font-size: 13px; color: var(--text-secondary); }
.cert-bar { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-badge { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); font-size: 13px; font-weight: 600; transition: all var(--transition); }
[data-theme="light"] .cert-badge { box-shadow: var(--shadow); }
.cert-badge:hover { border-color: var(--border-hover); color: var(--gold); }
.cert-badge i { color: var(--gold); font-size: 18px; }

/* ══════════════════ PAGE HERO (inner pages) ══════════════════ */
.page-hero {
  padding: 180px 0 96px;
  position: relative;
  overflow: hidden;
  /* fallback colour if image fails to load */
  background-color: var(--navy);
  /* background-image set per-page via inline style */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* dark gradient overlay — always on top of the image */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 18, 40, 0.90) 0%,
    rgba(10, 24, 55, 0.78) 55%,
    rgba(10, 24, 55, 0.60) 100%
  );
}

/* gold shimmer accent */
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

/* breadcrumb trail above the title */
.page-hero-crumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.page-hero-crumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero-crumb a:hover { color: var(--gold); }
.page-hero-crumb .sep { color: rgba(255,255,255,0.25); }
.page-hero-crumb .current { color: var(--gold); font-weight: 600; }

.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900; line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-title span { color: var(--gold); }
.page-hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 580px; line-height: 1.75;
}

/* ══════════════════ SUBSCRIBE SECTION ══════════════════ */
.subscribe-section { background: var(--footer-bg); padding: 80px 0; position: relative; overflow: hidden; }
.subscribe-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,168,75,0.08) 0%, transparent 70%); }
.subscribe-content { position: relative; z-index: 1; text-align: center; }
.subscribe-title { font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--text-p); margin-bottom: 12px; }
.subscribe-subtitle { font-size: 16px; color: var(--text-s); margin-bottom: 36px; }
.subscribe-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.subscribe-input { flex: 1; padding: 14px 20px; background: var(--input-bg); border: 1.5px solid var(--input-border); border-radius: 12px; color: var(--text-p); font-size: 14px; outline: none; transition: all var(--transition); }
.subscribe-input::placeholder { color: var(--text-muted); }
.subscribe-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,75,0.15); }
.subscribe-btn { flex-shrink: 0; }

/* ══════════════════ FOOTER ══════════════════ */
.site-footer { background: var(--footer-bg); border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { padding-right: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; font-size: 18px; color: #fff; }
.footer-logo-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-social:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-col-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 14px; }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════ FLOATING ACTION BUTTONS ══════════════════ */
.fab-container {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 1100; display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
.fab {
  display: flex; align-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer;
  font-size: 22px; color: #fff;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
  text-decoration: none; justify-content: center;
}
.fab-main {
  width: 58px; height: 58px; font-size: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  z-index: 2;
}
.fab-main:hover { transform: scale(1.1) rotate(10deg); }
.fab-whatsapp { background: #25d366; transform: scale(0) translateY(20px); opacity: 0; pointer-events: none; }
.fab-phone    { background: var(--navy); transform: scale(0) translateY(20px); opacity: 0; pointer-events: none; }
.fab-container.fab-open .fab-whatsapp { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.fab-container.fab-open .fab-phone    { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.fab-whatsapp:hover { transform: scale(1.12) !important; }
.fab-phone:hover    { transform: scale(1.12) !important; }
.fab-label {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--surface); color: var(--text-primary);
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  box-shadow: var(--shadow); pointer-events: none;
  opacity: 0; transition: opacity var(--transition);
  border: 1px solid var(--border);
}
.fab:hover .fab-label { opacity: 1; }
.fab-tooltip {
  background: var(--navy); color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: all 0.3s ease;
  margin-bottom: 4px;
}
.fab-container.fab-open .fab-tooltip { opacity: 1; transform: translateY(0); }

/* ══════════════════ ALERTS ══════════════════ */
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; border-radius: var(--radius); padding: 14px 18px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #dc2626; border-radius: var(--radius); padding: 14px 18px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
[data-theme="dark"] .alert-success { color: #22c55e; }
[data-theme="dark"] .alert-error   { color: #ef4444; }

/* ══════════════════ MODAL ══════════════════ */
.modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; backdrop-filter: blur(4px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-lg); width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto; padding: 36px; transform: scale(0.95); transition: transform 0.25s ease; }
[data-theme="light"] .modal-card { box-shadow: var(--shadow-lg); }
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.modal-title { font-size: 20px; font-weight: 800; }

/* ══════════════════ ANIMATIONS ══════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 4px rgba(34,197,94,0.2)} 50%{box-shadow:0 0 0 8px rgba(34,197,94,0.08)} }

/* ══════════════════ INDUSTRIES GRID ══════════════════ */
.industry-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  transition: all var(--transition); cursor: default;
}
[data-theme="light"] .industry-card { box-shadow: var(--shadow); }
.industry-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card i { font-size: 28px; color: var(--gold); margin-bottom: 10px; display: block; }
.industry-card span { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-visual { max-width: 480px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; padding-right: 0; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .security-panels { grid-template-columns: 1fr; }
  .security-panel-large { grid-column: span 1; }
  .stats-banner-grid { grid-template-columns: repeat(2,1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-visual { min-height: 200px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 24px) 0 48px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 28px; }
  .subscribe-form { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .job-card-main { flex-direction: column; align-items: flex-start; }
  .job-actions { margin-left: 0; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-banner-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stat-num { font-size: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .modal-card { padding: 24px 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .fab-container { bottom: 16px; right: 16px; }
  .stats-banner-grid { grid-template-columns: 1fr 1fr; }
  .stat-banner-num { font-size: 36px; }
}
