/* VeilWatch Static Site - Global Styles */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary-dark: #023047;
  --primary-blue: #2EA3F2;
  --accent-blue: #1a8fd4;
  --text-dark: #0e0c19;
  --text-body: #3c3a47;
  --text-light: #999;
  --white: #fff;
  --bg-dark: #0e0c19;
  --bg-section: #f7f8fc;
  --border-light: #e2e2e2;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1080px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  line-height: 28px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-blue); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 500;
}
h1 { font-size: 72px; line-height: 82.8px; }
h2 { font-size: 50px; line-height: 60px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 19px; line-height: 26.6px; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.3em; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  width: 100%;
  padding-right: 32px;
}
.top-bar a { color: var(--white); opacity: 0.8; }
.top-bar a:hover { opacity: 1; color: var(--white); }
.top-bar-links { display: flex; gap: 20px; }
.top-bar-links a { font-size: 0.8rem; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  width: 100%;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 32px;
  position: relative;
}

.logo img {
  height: 36px;
  width: auto;
}

/* Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 0;
  padding: 0;
  margin: 0;
}
.main-nav > ul > li {
  position: relative;
  margin: 0;
}
.main-nav > ul > li > a {
  display: block;
  padding: 10px 18px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-family: var(--font-body);
}
.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
  background: #112f45;
  color: var(--white);
}

/* Dropdowns - base */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: 0 0 8px 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
  list-style: none;
}
.dropdown:hover > .dropdown-menu,
.dropdown:hover > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { margin: 0; }
.dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.dropdown-menu li a:hover {
  background: var(--bg-section);
  color: var(--primary-blue);
  padding-left: 28px;
}

/* Industries flyout dropdown */
.flyout-menu {
  background: #f1f1f1;
  min-width: 250px;
  border-radius: 0;
  padding: 0;
}
.flyout-menu li a {
  color: #666;
  font-size: 14px;
  line-height: 35px;
  padding: 0 10px;
}
.flyout-menu li a:hover {
  background: #112f45;
  color: #fff;
  padding-left: 14px;
}

/* ==================== MEGA MENU (Products) ==================== */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 560px;
  background: #112f45;
  z-index: 999;
  display: flex;
  padding: 24px 30px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.mega-col {
  flex: 1;
  padding: 0 20px;
}
.mega-cat-header {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
  padding: 10px 0 4px;
  line-height: 1.4;
}
.mega-col:first-child .mega-cat-header:first-child,
.mega-col:last-child .mega-cat-header:first-child {
  padding-top: 0;
}
.mega-cat-header a {
  color: #fff;
  transition: color 0.2s;
}
.mega-cat-header a:hover {
  color: #aaa;
}
.mega-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.mega-dropdown ul li {
  margin: 0;
}
.mega-dropdown ul li a {
  display: block;
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 0;
  line-height: 1.7;
  transition: color 0.2s;
}
.mega-dropdown ul li a:hover {
  color: #999;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO SECTIONS ==================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--header-height) + 32px);
}

/* Light hero - white foreground with mask openings revealing video */
.hero-light {
  background: #ffffff;
  color: var(--text-dark);
  min-height: 700px;
}
.hero-video-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
/* Divi-style background mask: white SVG overlay with organic openings */
.hero-light::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background-image: url(/images/hero-mask.svg);
  background-size: calc(100% + 2px) calc(100% + 2px);
  background-repeat: no-repeat;
  background-position: 50%;
  overflow: hidden;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* Light hero content - left-aligned, dark text, no box */
.hero-content-light {
  max-width: 510px;
  text-align: left;
}
.hero-content-light h2 {
  font-size: 50px;
  padding-bottom: 10px;
  font-weight: 500;
  line-height: 60px;
  color: #0e0c19;
}
.hero-content-light p {
  font-size: 15px;
  line-height: 27px;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Page hero (smaller) */
.page-hero {
  min-height: 350px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #034a6e 100%);
  color: var(--white);
  margin-top: calc(var(--header-height) + 32px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.page-hero.has-bg-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 48, 71, 0.82);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1, .page-hero h2, .page-hero p { color: var(--white); }
.about-who-is {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}
.about-inline-logo {
  height: 36px;
  width: auto;
  display: inline;
  vertical-align: middle;
  margin: 0 8px;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 700px; }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-body);
  text-align: center;
}
.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}
.btn-primary:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}
.btn-dark:hover {
  background: #034a6e;
  border-color: #034a6e;
  color: var(--white);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-alt { background: var(--bg-section); }
.section-blue {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #034a6e 100%);
  color: var(--white);
}
.section-blue h2, .section-blue h3, .section-blue h4 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header .subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
  font-weight: 500;
  font-family: var(--font-body);
  padding-bottom: 10px;
  line-height: 19.6px;
}

/* ==================== GRID ==================== */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ==================== CARDS ==================== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.card h3, .card h4 { margin-bottom: 0.8rem; }
.card p { font-size: 0.95rem; }
.card-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.card-dark h3, .card-dark h4 { color: var(--white); }

/* ==================== FEATURE BLOCKS ==================== */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-image { flex: 1; }
.feature-image img { border-radius: 12px; }
.feature-text h3 { margin-bottom: 1rem; }

/* ==================== FULLWIDTH BANNER (Section 2) ==================== */
.vw-banner {
  background: #023047;
  color: var(--white);
  padding: 50px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}
.vw-banner-content {
  text-align: left;
  max-width: none;
}
.vw-banner-logo {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
}
.vw-banner-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.vw-banner-content p strong {
  color: var(--white);
}

/* ==================== PLATFORM SECTION (Section 3) ==================== */
.platform-section {
  background: #e5e5e5;
  padding: 80px 0;
}
.platform-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.platform-section .section-header h2 {
  color: #0e0c19;
  margin-bottom: 1rem;
}

/* Platform blurb grid rows */
.platform-blurbs {
  margin-top: 40px;
}
.platform-blurbs-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.platform-blurbs-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Platform blurbs - plain text on gray, no card containers */
.platform-blurb {
  text-align: left;
  padding: 0;
}
.platform-blurb h4 {
  color: #000;
  font-size: 19px;
  padding-bottom: 10px;
  font-weight: 500;
  font-family: var(--font-heading);
  line-height: 26.6px;
}
.platform-blurb p {
  font-size: 16px;
  color: #3c3a47;
  line-height: 28px;
  font-weight: 500;
}

/* ==================== PRODUCT TILES (Section 4) ==================== */
.next-gen-section {
  background: var(--white);
}
.product-tiles {
  margin: 40px 0 30px;
}
.product-tiles-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.product-tiles-row:last-child {
  margin-bottom: 0;
}
.product-tile {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.product-tile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.zen-tagline {
  font-size: 1rem;
  color: var(--text-body);
  margin-top: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==================== ZEN PRODUCT ICON GRID ==================== */
.zen-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.zen-icon-item {
  text-align: center;
  padding: 20px 10px;
}
.zen-icon-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.zen-icon-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
  text-align: left;
  padding: 80px 0;
  background: #023047;
  color: var(--white);
}
.cta-section h1,
.cta-section h2 {
  color: var(--white);
  padding-bottom: 10px;
  font-size: 72px;
  font-weight: 500;
  line-height: 82.8px;
}
.cta-section p {
  max-width: none;
  margin: 0 0 2rem;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  opacity: 1;
}
.btn-pill {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--white);
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
}
.btn-pill:hover {
  background: transparent;
  color: var(--white);
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(46,163,242,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ==================== STATS ==================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
}
.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-blue);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 20px;
}
.testimonial .author {
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
}

/* ==================== FAQ ==================== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.faq-item h4 {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  margin-bottom: 0;
  transition: color 0.3s;
}
.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-blue);
}
.faq-item.active h4::after { content: '−'; }
.faq-item h4:hover { color: var(--primary-blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}

/* ==================== VALUES GRID ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.footer-brand img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-info {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0; }

/* Checkmark list */
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Info blocks */
.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.info-block-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(46,163,242,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

/* Two column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ==================== DVA CAPABILITY CARDS ==================== */
.dva-subtitle-row {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 28px 0;
}
.dva-subtitle-row p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  color: var(--white);
}

.dva-capabilities-grid {
  gap: 24px;
}

.dva-cap-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s;
  padding: 0;
}
.dva-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.dva-cap-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.dva-cap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dva-cap-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 18px 8px;
  line-height: 1.3;
}
.dva-cap-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 18px 18px;
}

/* ==================== COMPLIANCE CARDS ==================== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.compliance-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-top: 3px solid var(--primary-blue);
  transition: all 0.3s;
}
.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.compliance-card .compliance-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.compliance-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.compliance-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==================== VALUE ICONS ==================== */
.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .platform-blurbs-row-4 { grid-template-columns: repeat(2, 1fr); }
  .platform-blurbs-row-2 { grid-template-columns: repeat(2, 1fr); }
  .product-tiles-row { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.3s;
    overflow-y: auto;
    padding: 80px 0 30px;
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul {
    flex-direction: column;
    padding: 0;
  }
  .main-nav > ul > li > a { padding: 12px 24px; }
  .main-nav > ul > li:hover > a { background: none; color: var(--primary-blue); }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--bg-section);
    border-radius: 0;
  }
  .dropdown.open > .dropdown-menu { display: block; }
  .mega-dropdown {
    position: static;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 12px 20px;
  }
  .mega-dropdown-wrapper.open > .mega-dropdown { display: flex; }
  .mega-col { padding: 0; }
  .mega-cat-header { font-size: 14px; }
  .mega-dropdown ul li a { font-size: 13px; }

  .hero { min-height: 450px; }
  .hero-light { min-height: 500px; }
  .hero-content-light h2 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .dva-capabilities-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .platform-blurbs-row-4 { grid-template-columns: repeat(2, 1fr); }
  .platform-blurbs-row-2 { grid-template-columns: 1fr; }
  .product-tiles-row { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 30px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .compliance-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .platform-section { padding: 50px 0; }
  .top-bar { display: none; }
  .vw-banner { margin-top: -20px; padding: 35px 0; }
  .vw-banner-content { flex-direction: column; align-items: flex-start; }
  .cta-section h2 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero-content h2 { font-size: 1.8rem; }
  .dva-capabilities-grid.grid-4 { grid-template-columns: 1fr; }
  .platform-blurbs-row-4 { grid-template-columns: 1fr; }
  .product-tiles-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
