@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500;700;800&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --navy: #123A6B;
  --deep-blue: #11427A;
  --blue: #0D74A8;
  --cyan: #00A8CC;
  --tagline-blue: #3E6B9C;
  --ink: #101820;
  --paper: #F3F6FA;
  --paper-2: #EAF0F6;
  --line: #D9E2EC;
  --gray-500: #64748b;
  --gray-700: #334155;
  --white: #FFFFFF;
  --radius: 20px;
  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--cyan);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 26px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(18, 58, 107, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

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

.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

.btn-cyan:hover {
  background: #008ba8;
  color: var(--white);
}

.btn-block {
  width: 100%;
  display: flex;
}

/* TAGS / CHIPS */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
}

.chip.filled {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.chip.cyan {
  background: var(--paper-2);
  color: var(--blue);
  border-color: var(--line);
}

/* SITE HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--deep-blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,168,204,0.3);
}

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

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--tagline-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

/* PAGE BANNER ALT (HEADER BANNER FOR DETAIL & INNER PAGES) */
.page-banner-alt {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 42px 0 34px;
}

.page-banner-alt .chip {
  margin-bottom: 14px;
  display: inline-flex;
}

.page-banner-alt h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 980px;
}

.page-banner-alt p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 780px;
  margin: 0;
}

.page-banner-alt .article-meta-row,
.page-banner-alt .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 14px;
}

.page-banner-alt .meta-dot {
  color: var(--gray-500);
  font-size: 11px;
}

/* HERO SECTION */
.hero-banner {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue) 55%, var(--cyan) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-banner .node-bg {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 600px;
  height: 600px;
  opacity: 0.85;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: var(--white);
  margin-top: 12px;
  font-size: 46px;
  line-height: 1.18;
}

.hero-text p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
}

/* CARDS & GRIDS */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 58, 107, 0.08);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.layout-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* SECTION TITLES */
.section-head {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-head h2 {
  margin-top: 6px;
}

/* ARTICLE CARD */
.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--paper-2);
}

.article-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card h3 {
  font-size: 16px;
  margin: 10px 0 8px;
  line-height: 1.4;
  color: var(--navy);
}

.article-card p {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.article-card .card-meta {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ARTICLE CONTENT & TYPOGRAPHY ENHANCEMENTS */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: #24292f;
}

.article-content p {
  margin-bottom: 22px;
  line-height: 1.85;
  color: #2b3648;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 44px;
  margin-bottom: 18px;
  color: var(--navy);
  line-height: 1.35;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--deep-blue);
  line-height: 1.4;
}

.article-content h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 12px;
  color: var(--navy);
}

.article-content ul, 
.article-content ol {
  margin-top: 8px;
  margin-bottom: 24px;
  padding-left: 28px;
  line-height: 1.85;
}

.article-content li {
  margin-bottom: 10px;
  color: #2b3648;
}

.article-content li strong {
  color: var(--navy);
}

.article-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}

.article-content blockquote p {
  margin-bottom: 0;
}

/* BEAUTIFUL MODERN TABLE DESIGN IN ARTICLES */
.article-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.article-content th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--cyan);
}

.article-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.6;
}

.article-content tr:last-child td {
  border-bottom: none;
}

.article-content tr:nth-child(even) td {
  background: rgba(0, 168, 204, 0.02);
}

.article-content tr:hover td {
  background: rgba(0, 168, 204, 0.06);
}

/* ARTICLE ROW ITEM */
.article-row-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.article-row-item:last-child {
  border-bottom: none;
}

.article-row-item img {
  width: 180px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.article-row-item .row-content {
  flex: 1;
}

.article-row-item h3 {
  font-size: 16px;
  margin: 6px 0;
  color: var(--navy);
}

.article-row-item p {
  font-size: 13.5px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

/* LEAD FORM CARD */
.lead-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.lead-form-card .form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-form-card .form-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group label .req {
  color: #b91c1c;
}

.form-control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--paper-2);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--cyan);
  background: var(--white);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.consent-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray-700);
  margin: 16px 0;
  line-height: 1.5;
}

.consent-box input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

/* POLICY CONTENT STYLE */
.policy-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  font-size: 15px;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--navy);
  border-bottom: 1px solid var(--paper-2);
  padding-bottom: 8px;
}

.policy-content h3 {
  font-size: 17px;
  margin: 20px 0 10px;
  color: var(--deep-blue);
}

.policy-content p {
  margin-bottom: 14px;
  color: var(--gray-700);
}

.policy-content ul, .policy-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--gray-700);
}

.policy-content li {
  margin-bottom: 6px;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13.5px;
}

.policy-content th, .policy-content td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}

.policy-content th {
  background: var(--paper-2);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

/* SITE FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
  margin-top: 80px;
}

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

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
}

/* COOKIE POPUP */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 860px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-popup p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

.cookie-popup .cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid, .layout-2col {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .header-row {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }
  .nav-menu {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 8px;
  }
}
