/* =====================================================
   VARIABLES
   ===================================================== */
:root {
  --navy: #082A5E;
  --blue: #0B4AA2;
  --gold: #D4AF37;
  --dark: #1f2937;
  --muted: #4b5563;
  --white: #ffffff;
  --light: #F4F7FB;
  --gray: #E5E7EB;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; cursor: pointer; }
p { margin-bottom: 18px; font-size: 16px; color: var(--muted); }
strong { color: var(--navy); font-weight: 700; }

/* =====================================================
   IMAGE SYSTEM
   ===================================================== */
.pic {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 12px;
  line-height: 0;
  display: block;
}
.pic img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.pic img[src=""] { display: none; }
.pic .lbl {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  padding: 20px;
  pointer-events: none;
}
.pic img[src=""] ~ .lbl { position: relative; min-height: 200px; background: var(--light); border-radius: 12px; }
.pic img:not([src=""]) ~ .lbl { display: none; }
.pic.contain img { object-fit: contain; height: 100%; width: auto; max-width: 100%; margin: 0 auto; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
  background: linear-gradient(180deg, #ffde59 0%, var(--gold) 100%);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-block;
  font-size: 15px;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: linear-gradient(180deg, #f0c843 0%, #b5952f 100%); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  font-size: 14px;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-block;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(11,74,162,0.4);
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn-blue:hover { transform: translateY(-2px); background: var(--navy); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.top-bar { background: #000; padding: 10px 0; text-align: center; }
.top-bar a { color: var(--gold); font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }

.main-nav { background: var(--navy); padding: 12px 0; position: sticky; top: 0; z-index: 9999; border-bottom: 4px solid var(--gold); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; max-width: 1400px; margin: 0 auto; padding: 0 20px; flex-wrap: nowrap; }
.nav-logo { color: var(--white); font-weight: 900; font-size: 15px; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.nav-links { display: flex; gap: 2px; justify-content: center; flex: 1; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a { color: var(--white); font-size: 10.5px; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; transition: color 0.3s; padding: 6px 7px; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; gap: 6px; align-items: center; flex-shrink: 0; position: relative; }
.nav-actions .btn-outline { padding: 7px 12px; font-size: 10.5px; border-width: 1px; white-space: nowrap; }
.nav-actions .btn-gold { padding: 7px 12px; font-size: 10.5px; white-space: nowrap; position: relative; }

/* Client Login Dropdown */
.login-wrap { position: relative; }
.login-wrap .btn-gold { cursor: pointer; }
.login-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 8px;
  min-width: 180px;
  overflow: hidden;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.login-wrap:hover .login-dropdown,
.login-wrap.open .login-dropdown { display: block; }
.login-dropdown a {
  display: block;
  padding: 12px 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.login-dropdown a:last-child { border-bottom: none; }
.login-dropdown a:hover { background: var(--gold); color: var(--navy); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* =====================================================
   MODAL & FORM SYSTEM
   ===================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 20px;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
.modal-content {
  background: #f4f7fb;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #cbd5e1;
}
.modal-header {
  background: linear-gradient(135deg, #0f172a 0%, var(--navy) 100%);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}
.modal-header h3 { margin: 0 0 6px 0; font-size: 26px; font-weight: 900; color: var(--gold); text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.modal-close { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 22px; width: 36px; height: 36px; border-radius: 6px; cursor: pointer; line-height: 1; transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gold); color: var(--navy); }
.modal-body { padding: 30px; }

/* Form Grids */
.report-form-layout { display: flex; gap: 30px; }
.report-form-left { flex: 1.2; display: flex; flex-direction: column; gap: 16px; }
.report-form-right { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; align-items: flex-start; }
.form-row > div { flex: 1; min-width: 0; }

/* Modern Inputs */
.modal-form label { display: block; font-size: 11px; font-weight: 800; color: #475569; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="number"],
.modal-form input[type="date"],
.modal-form input[type="time"],
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
  color: #1e293b;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.modal-form input::placeholder, .modal-form textarea::placeholder { color: #94a3b8; font-weight: 400; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { outline: none; border-color: var(--blue); background: #ffffff; box-shadow: 0 0 0 4px rgba(11,74,162,0.1); }
.modal-form textarea { min-height: 80px; resize: vertical; }

.right-panel-box { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.right-panel-header { background: #f1f5f9; padding: 14px 18px; font-size: 13px; font-weight: 800; color: var(--navy); border-bottom: 1px solid #e2e8f0; text-transform: uppercase; letter-spacing: 0.5px; }
.right-panel-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }

.custom-checkbox { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; color: var(--navy); }
.custom-checkbox span { background: var(--navy); color: white; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 12px; border-radius: 4px; flex-shrink: 0; }

.radio-group { display: flex; gap: 16px; align-items: center; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #475569; cursor: pointer; text-transform: none; margin: 0; letter-spacing: 0; }

.modal-form button[type="submit"] {
  background: linear-gradient(180deg, #ffde59 0%, var(--gold) 100%);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  padding: 18px;
  width: 100%;
  border: 1px solid #b5952f;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
.modal-form button[type="submit"]:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }

@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(55px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.from-left  { transform: translateX(-65px); }
.reveal.from-right { transform: translateX(65px); }
.reveal.from-scale { transform: scale(0.87) translateY(20px); }
.reveal.from-fade  { transform: none; }
.reveal.visible    { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; padding: 60px 0 0; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #1a202c; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
.hero-bg img[src=""] { display: none; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(82,121,179,0.95) 0%, rgba(11,74,162,0.85) 100%); z-index: 2; }
.hero > .container { position: relative; z-index: 3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-inner { display: flex; align-items: flex-start; gap: 50px; padding-bottom: 60px; padding-top: 10px; }
.hero-logo { width: 300px; height: 300px; flex-shrink: 0; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo img { position: relative; width: auto; height: auto; max-width: 90%; max-height: 90%; object-fit: contain; display: block; }
.hero-content { flex: 1; padding-top: 4px; }
.hero-content h2 { font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; font-weight: 800; }
.hero-content h1 { font-size: 46px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero-content > p { font-size: 18px; color: rgba(255,255,255,0.9); font-weight: 400; margin-bottom: 30px; max-width: 640px; font-family: 'Montserrat', sans-serif; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.stats-bar { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,0.15); padding: 20px 0; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); }
.stats-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: nowrap; gap: 0; }
.stat-item { display: flex; align-items: center; gap: 12px; color: var(--white); padding: 6px 16px; border-left: 2px solid rgba(212,175,55,0.3); flex: 1; justify-content: center; }
.stat-item:first-child { border-left: none; }
.stat-item strong { font-size: 22px; display: block; color: var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 900; white-space: nowrap; }
.stat-item span { font-size: 11px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }

/* =====================================================
   DYNAMIC BANNER
   ===================================================== */
.banner { position: relative; height: auto; min-height: 300px; overflow: hidden; background: #1a202c; border-top: 6px solid var(--gold); border-bottom: 6px solid var(--gold); }
.banner > img { position: relative; width: 100%; height: auto; object-fit: cover; display: block; z-index: 1; }
.banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 2; }

/* =====================================================
   INTERNAL PAGE HEADER
   ===================================================== */
.page-header { position: relative; padding: 80px 0; color: var(--white); text-align: center; border-bottom: 4px solid var(--gold); overflow: hidden; background: var(--navy); }
.page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #1a202c; z-index: 1; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,42,94,0.95), rgba(11,74,162,0.95)); z-index: 2; }
.page-header > .container { position: relative; z-index: 3; }
.page-header h1 { font-size: 38px; font-weight: 900; margin-bottom: 12px; background: linear-gradient(135deg, #fff 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-header p { font-size: 17px; color: var(--gold); font-weight: 600; margin-bottom: 0; }

/* =====================================================
   CONTENT SECTIONS & SOL ROW
   ===================================================== */
.section { padding: 90px 0; background: var(--white); }
.section.light { background: var(--light); border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.section h2 { font-size: 34px; font-weight: 900; margin-bottom: 22px; border-left: 4px solid var(--gold); padding-left: 14px; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section h3 { color: var(--blue); font-size: 21px; font-weight: 700; margin-bottom: 12px; margin-top: 26px; }
.section ul.blist { margin-left: 22px; margin-bottom: 18px; list-style: disc; }
.section ul.blist li { margin-bottom: 10px; font-size: 16px; color: var(--muted); }

.sol-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; margin-top: 40px; }
.sol-row:nth-child(even) { flex-direction: row-reverse; }
.sol-text { flex: 1; min-width: 0; }
.sol-text h3 { font-size: 30px; font-weight: 900; line-height: 1.2; margin-bottom: 18px; border-left: 5px solid var(--gold); padding-left: 18px; margin-top: 0; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sol-text h2 { font-size: 30px; font-weight: 900; margin-bottom: 18px; }
.sol-text p { font-size: 16px; color: var(--dark); margin-bottom: 15px; line-height: 1.8; }
.sol-pic { flex: 1.4; min-width: 0; height: auto; box-shadow: 0 20px 40px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.sol-pic:hover { box-shadow: 0 30px 60px rgba(8,42,94,0.12); transform: translateY(-4px); }

/* =====================================================
   FEATURE GRID & TIMELINE
   ===================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 36px; }
.feature-card { background: linear-gradient(160deg, #fff 0%, #f8faff 100%); border: 1px solid #e5e7eb; border-radius: 12px; padding: 32px 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid var(--gold); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(8,42,94,0.1); border-top-color: var(--blue); }
.feature-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.timeline-pic { width: 100%; height: auto; margin-bottom: 42px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* =====================================================
   RISK / COMPARISON SECTION
   ===================================================== */
.risk-section { padding: 100px 0; text-align: center; background: linear-gradient(160deg, #F4F7FB 0%, #EEF2F8 100%); border-bottom: 1px solid #e5e7eb; }
.risk-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 14px; letter-spacing: -1px; border: none; padding: 0; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.risk-section h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 14px; font-family: 'Open Sans', sans-serif; }
.cmp-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; }
.cmp-box { display: grid; grid-template-columns: 1fr auto 1fr; background: linear-gradient(135deg, #f8fafc, #fff); border-radius: 16px; box-shadow: 0 20px 50px rgba(8,42,94,0.08); width: 100%; max-width: 1050px; border: 1px solid #e5e7eb; overflow: hidden; align-items: center; }
.cmp-side { padding: 50px 40px; text-align: left; }
.cmp-side.light { background: #f8fafc; }
.cmp-side h4 { font-size: 20px; font-weight: 900; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cmp-side ul { list-style: none; }
.cmp-side li { padding: 7px 0; font-size: 15px; color: var(--muted); }
.cmp-mid { background: var(--navy); color: var(--white); padding: 24px 20px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 15px; text-align: center; box-shadow: 0 0 30px rgba(8,42,94,0.3); border-left: 3px solid var(--gold); border-right: 3px solid var(--gold); width: 220px; line-height: 1.4; align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cmp-mid span { display: block; }

/* =====================================================
   SIA SECTION
   ===================================================== */
.sia-section { padding: 100px 0; text-align: center; color: var(--white); background: linear-gradient(160deg, #051A3A 0%, var(--navy) 40%, #0a2e5c 100%); position: relative; overflow: hidden; }
.sia-section::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%); top: -200px; left: -200px; pointer-events: none; }
.sia-section::after  { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(11,74,162,0.14) 0%, transparent 70%); bottom: -200px; right: -200px; pointer-events: none; }
.sia-section > .container { position: relative; z-index: 1; }
.sia-section h2 { font-size: 40px; font-weight: 900; margin-bottom: 16px; background: linear-gradient(135deg, #fff 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.sia-card { background: rgba(255,255,255,0.08); padding: 34px 22px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); border-top: 4px solid var(--gold); text-align: center; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94); cursor: default; }
.sia-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(11,74,162,0.12)); opacity: 0; transition: opacity 0.5s; }
.sia-card::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.5s; }
.sia-card:hover { transform: translateY(-12px) scale(1.02); background: rgba(255,255,255,0.18); box-shadow: 0 25px 55px rgba(0,0,0,0.4), 0 0 45px rgba(212,175,55,0.15); }
.sia-card:hover::before { opacity: 1; }
.sia-card:hover::after  { transform: scaleX(1); }
.sia-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; transition: color 0.3s; position: relative; z-index: 1; }
.sia-card:hover h4 { color: var(--gold); }
.sia-card p { position: relative; z-index: 1; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* =====================================================
   CULTURE CARDS
   ===================================================== */
.culture-section { padding: 100px 0; background: linear-gradient(160deg, var(--light) 0%, #eef2f8 100%); text-align: center; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.culture-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 42px; border: none; padding: 0; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.culture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 24px; }
@keyframes cpulse { 0%,100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.05); } 50% { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(8,42,94,0.12); } }
.culture-card { background: var(--white); padding: 34px 14px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 5px solid var(--gold); position: relative; overflow: hidden; animation: cpulse 4s ease-in-out infinite; }
.culture-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue)); transform: scaleX(0); transition: transform 0.4s; }
.culture-card:hover { animation-play-state: paused; transform: translateY(-16px) !important; box-shadow: 0 28px 55px rgba(8,42,94,0.15) !important; }
.culture-card:hover::before { transform: scaleX(1); }
.culture-card h4 { font-size: 14px; font-weight: 900; color: var(--navy); }

/* =====================================================
   INDUSTRIES
   ===================================================== */
.ind-section { padding: 100px 0; background: var(--white); text-align: center; }
.ind-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 14px; border: none; padding: 0; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ind-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; margin-top: 14px; }
.ind-card { background: var(--light); border: 1px solid #e5e7eb; border-radius: 12px; padding: 36px 28px; text-align: left; transition: all 0.3s; position: relative; overflow: hidden; }
.ind-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--gold), var(--blue)); transform: scaleY(0); transition: transform 0.4s; transform-origin: bottom; }
.ind-card:hover { background: var(--white); box-shadow: 0 20px 40px rgba(8,42,94,0.08); border-color: var(--gold); transform: translateY(-5px); }
.ind-card:hover::before { transform: scaleY(1); }
.ind-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 8px; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.svg-icon-card { cursor: default; transform-box: fill-box; transform-origin: center bottom; transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1); }
.svg-icon-card:hover { transform: scale(1.08) translateY(-8px); filter: drop-shadow(0 18px 32px rgba(8,42,94,0.22)); }

/* =====================================================
   CALL CENTER
   ===================================================== */
.cc-section { background: linear-gradient(135deg, #F0F4FB 0%, #E8EFF8 50%, #F4F7FB 100%); padding: 100px 0; border-top: 1px solid #e5e7eb; }
.cc-inner { display: flex; align-items: center; gap: 70px; }
.cc-text { flex: 1; min-width: 0; }
.cc-text h2 { font-size: 34px; font-weight: 900; margin-bottom: 30px; border: none; padding: 0; background: linear-gradient(135deg, var(--navy), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cc-text ul { list-style: none; }
.cc-text li { display: flex; align-items: center; gap: 14px; padding: 15px 20px; background: var(--white); border-radius: 12px; margin-bottom: 12px; box-shadow: 0 4px 15px rgba(8,42,94,0.06); border-left: 4px solid var(--gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); transition: all 0.35s; }
.cc-text li:hover { transform: translateX(10px); box-shadow: 0 8px 30px rgba(8,42,94,0.12); border-left-color: var(--blue); }
.cc-icon { width: 28px; height: 28px; min-width: 28px; stroke: var(--blue); transition: stroke 0.3s, transform 0.3s; }
.cc-text li:hover .cc-icon { stroke: var(--gold); transform: scale(1.2); }
.cc-pic { flex: 1.4; min-width: 0; height: auto; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #0c3870 50%, var(--navy) 100%); padding: 100px 0; text-align: center; color: var(--white); border-bottom: 4px solid var(--gold); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(212,175,55,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-size: 42px; font-weight: 900; margin-bottom: 26px; position: relative; z-index: 1; }
.cta-section h2 span { background: linear-gradient(135deg, var(--gold), #f0c843); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-section .btn-gold { position: relative; z-index: 1; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: linear-gradient(160deg, #030d1e 0%, #051A3A 60%, #040f25 100%); padding: 80px 0 50px; color: rgba(255,255,255,0.8); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 44px; margin-bottom: 44px; }
.footer-col h4 { font-size: 15px; color: var(--gold); margin-bottom: 22px; text-transform: uppercase; letter-spacing: 1px; font-weight: 900; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.3s, padding-left 0.3s; font-weight: 600; font-size: 14px; cursor: pointer; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-logo-box { width: 300px; height: 100px; margin-bottom: 20px; position: relative; overflow: hidden; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-logo-box img { width: auto; height: auto; max-width: 90%; max-height: 90%; object-fit: contain; display: block; }

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
  .nav-links { display: none; flex-direction: column; width: 100%; align-items: center; gap: 4px; padding: 10px 0; background: var(--navy); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .nav-actions { width: 100%; justify-content: center; margin-top: 6px; }
  .hero-inner { flex-direction: column; text-align: center; gap: 24px; padding-bottom: 40px; align-items: center; }
  .hero-logo { width: 200px; height: 200px; margin: 0 auto; }
  .hero-content h1 { font-size: 30px; }
  .sol-row, .sol-row:nth-child(even) { flex-direction: column; gap: 28px; }
  .sol-pic, .cc-pic { width: 100%; height: auto; flex: none; }
}

@media (max-width: 768px) {
  .stats-grid { flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 0 0 45%; border-left: none; border-top: 1px solid rgba(212,175,55,0.2); padding: 10px 8px; justify-content: center; text-align: center; }
  .stat-item:first-child, .stat-item:nth-child(2) { border-top: none; }
  .ind-cards { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .report-form-layout { flex-direction: column; gap: 24px; }
  .form-row { flex-direction: column; gap: 16px; }
  .cmp-box { grid-template-columns: 1fr; }
  .cmp-mid { width: 100%; align-self: auto; border-left: none; border-right: none; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
  .sia-grid { grid-template-columns: 1fr; }
  .cc-inner { flex-direction: column; gap: 30px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 22px; }
  .btn-gold, .btn-outline, .btn-blue { padding: 11px 16px; font-size: 12px; }
  .sia-grid { gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header h1 { font-size: 26px; }
  .cta-section h2 { font-size: 28px; }
}

/* =====================================================
   EXECUTIVE TEAM SECTION
   ===================================================== */
.exec-section {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
}
.exec-section h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 40px;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  text-align: left;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exec-img-wrap {
  max-width: 750px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(8,42,94,0.12);
  border: 3px solid var(--gold);
}
.exec-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .exec-img-wrap {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* =====================================================
   MODAL LOGO BOX — FIXED
   ===================================================== */
.modal-logo-box {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 180px;
  overflow: hidden;
}
.modal-logo-box img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .modal-logo-box {
    min-height: 130px;
  }
  .modal-logo-box img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .modal-logo-box {
    min-height: 100px;
  }
  .modal-logo-box img {
    max-width: 100%;
  }
}

/* =====================================================
   LEGAL PAGE
   ===================================================== */

/* Tab Bar */
.legal-tab-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 0;
  position: sticky;
  top: 68px;
  z-index: 999;
}
.legal-tabs {
  display: flex;
  gap: 0;
}
.legal-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.legal-tab:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.legal-tab.active { color: var(--gold); border-bottom: 3px solid var(--gold); background: rgba(212,175,55,0.08); }

/* Panel */
.legal-panel { display: none; }
.legal-panel.active { display: block; }

/* Header Box */
.legal-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold);
}
.legal-badge {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid var(--gold);
}
.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.legal-updated strong { color: var(--navy); }

/* Content */
.legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Section */
.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid #e5e7eb;
}
.legal-section:last-child { border-bottom: none; }
.legal-section h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
}
.legal-num {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}
.legal-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--blue); font-weight: 600; }
.legal-section a:hover { color: var(--gold); }

/* List */
.legal-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding: 10px 16px;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.legal-list li::before {
  content: '•';
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Subsection */
.legal-subsection {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--light);
  border-radius: 10px;
  border-left: 4px solid var(--blue);
}
.legal-subsection h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-subsection p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-subsection p:last-child { margin-bottom: 0; }

/* Note */
.legal-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

/* Disclaimer box */
.legal-warning-section .legal-section { background: transparent; }
.legal-disclaimer {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #cbd5e1;
  border-left: 4px solid var(--navy);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 13px;
  color: #374151;
  line-height: 1.8;
  font-family: 'Open Sans', sans-serif;
}

/* Contact box */
.legal-contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  padding: 18px 24px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  margin-top: 16px;
  width: fit-content;
}
.legal-contact-box a {
  color: var(--gold) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.legal-contact-box a:hover { color: var(--white) !important; }

/* Mobile */
@media (max-width: 768px) {
  .legal-tab { padding: 14px 18px; font-size: 11px; }
  .legal-header-box { flex-direction: column; align-items: flex-start; }
  .legal-section h3 { font-size: 17px; }
  .legal-subsection { padding: 16px; }
  .legal-disclaimer { font-size: 12px; padding: 16px; }
  .legal-contact-box { width: 100%; }
}

@media (max-width: 480px) {
  .legal-tab { padding: 12px 14px; font-size: 10px; letter-spacing: 0.5px; }
  .legal-section { padding: 24px 0; }
  .legal-list li { font-size: 13px; }
}