@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

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

:root {
  --accent: #4e82ff;
  --accent-dark: #3a6ae0;
  --bg: #0a0d14;
  --bg2: #0d1220;
  --bg3: #0f1520;
  --text: #e8eaf0;
  --text-muted: rgba(232,234,240,0.5);
  --text-faint: rgba(232,234,240,0.35);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Exo 2', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(10,13,20,0.97);
  backdrop-filter: blur(12px);
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; justify-self: start; }
.nav-links { display: flex; align-items: center; gap: 4px; justify-self: center; }
.nav-right { display: flex; align-items: center; gap: 4px; justify-self: end; }
.nav-logo { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.nav-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
}
.nav-brand-name span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(232,234,240,0.45); padding: 6px 12px; border-radius: 6px;
  cursor: pointer; transition: all 0.2s; font-weight: 500;
  border: none; background: transparent; font-family: 'Exo 2', sans-serif;
  text-decoration: none; display: inline-block;
}
.nav-link:hover { color: var(--accent); background: rgba(78,130,255,0.08); }
.nav-search-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  color: rgba(232,234,240,0.45); transition: all 0.2s;
  text-decoration: none; margin-left: 4px; flex-shrink: 0;
}
.nav-search-btn:hover { color: var(--accent); background: rgba(78,130,255,0.08); }

/* ── DROPDOWN ── */
.nav-dropdown {
  position: relative; display: inline-flex; align-items: center;
}
.nav-dropdown-toggle {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(232,234,240,0.45); padding: 6px 12px; border-radius: 6px;
  cursor: pointer; transition: all 0.2s; font-weight: 500;
  border: none; background: transparent; font-family: 'Exo 2', sans-serif;
  display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
}
.nav-dropdown-toggle::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid rgba(232,234,240,0.45);
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--accent); background: rgba(78,130,255,0.08);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  border-top-color: var(--accent); transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 200px; z-index: 200;
  background: #0d1220; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(232,234,240,0.55); text-decoration: none; font-weight: 500;
  font-family: 'Exo 2', sans-serif; transition: all 0.15s; white-space: nowrap;
}
.nav-dropdown-item:hover { color: var(--accent); background: rgba(78,130,255,0.08); }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 0; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 60px 40px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #0d1220 0%, #0a0d14 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,130,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,130,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(78,130,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.logo-mark {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.logo-icon {
  width: 52px; height: 52px;
  background: #1a2540;
  border: 1px solid rgba(78,130,255,0.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon img { width: 36px; height: 36px; object-fit: contain; }
.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px; font-weight: 900;
  letter-spacing: 2px; color: #fff; text-transform: uppercase;
  text-align: left;
}
.brand-name span { color: var(--accent); }
.hero-tagline {
  position: relative;
  font-size: 14px; color: rgba(232,234,240,0.5);
  font-weight: 300; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-desc {
  position: relative;
  font-size: 15px; color: rgba(232,234,240,0.6);
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}
.divider-line {
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 16px 0;
}

/* ── SECTIONS ── */
.section { padding: 60px 24px; }
.section.alt { background: var(--bg2); border-top: 1px solid rgba(255,255,255,0.05); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.section-sub { font-size: 14px; color: rgba(232,234,240,0.5); line-height: 1.7; }
.inner { max-width: 1100px; margin: 0 auto; }

/* ── BRAND CARDS ── */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.cards-grid .sub-card {
  flex: 0 1 320px;
  min-width: 260px;
}
.sub-card {
  background: #0f1520;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  display: flex; flex-direction: column;
}
.sub-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.sub-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  border-radius: 16px 16px 0 0;
  z-index: 10;
}
.sub-card.has-banner { padding: 0; }
.card-brand-img {
  width: 100%;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-brand-img-inner {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.03);
}
.card-banner-top {
  display: none;
}
.card-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 26px;
}
.card-title { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.card-url { font-size: 11px; letter-spacing: 1px; margin-bottom: 14px; }
.card-desc { font-size: 13px; color: rgba(232,234,240,0.55); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; border: 1px solid; transition: all 0.2s;
}

/* ── ABOUT ── */
.about-section {
  padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #0d1220;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-divider { width: 40px; height: 2px; background: var(--accent); margin: 16px 0; }
.about-text { font-size: 14px; color: rgba(232,234,240,0.5); line-height: 1.8; margin-bottom: 14px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box {
  background: #0a0d14;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
}
.stat-num { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: rgba(232,234,240,0.45); letter-spacing: 1px; text-transform: uppercase; }

/* ── SOCIALS ── */
.social-section { padding: 60px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.social-inner { max-width: 1100px; margin: 0 auto; }
.social-header { text-align: center; margin-bottom: 40px; }
.socials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.social-card {
  background: #0f1520; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px;
  padding: 22px 16px; text-align: center; text-decoration: none;
  transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.social-card:hover { transform: translateY(-3px); }
.social-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.social-name { font-family: 'Orbitron', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.social-handle { font-size: 11px; color: rgba(232,234,240,0.4); }

/* ── POSTS ── */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

/* ── FEATURED SLIDER ── */
#posts-featured { margin-bottom: 24px; position: relative; }
.slider-wrap { position: relative; width: 100%; }
.slider-track { position: relative; width: 100%; overflow: hidden; border-radius: 16px; border: 1px solid rgba(78,130,255,0.25); }
.slider-slides { display: flex; flex-wrap: nowrap; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.slider-slides .post-hero {
  width: 100%; min-width: 100%; flex: 0 0 100%;
  border-radius: 0 !important; border: none !important; margin: 0 !important;
}
.slider-slides .post-hero:hover { transform: none !important; border-color: transparent !important; }
.slider-slides .post-hero::before { border-radius: 0 !important; }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--accent); z-index: 2; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.25s; border: none; padding: 0; }
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.slider-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(232,234,240,0.6); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 14px; }
.slider-btn:hover { background: rgba(78,130,255,0.15); border-color: rgba(78,130,255,0.4); color: #fff; }
.posts-view-all { text-align: center; margin-top: 28px; }
.posts-view-all a { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; font-family: 'Orbitron', sans-serif; color: var(--accent); padding: 10px 24px; border-radius: 8px; border: 1px solid rgba(78,130,255,0.3); transition: all 0.2s; }
.posts-view-all a:hover { background: rgba(78,130,255,0.1); border-color: rgba(78,130,255,0.6); }

.post-card {
  background: #0f1520; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px;
  padding: 26px; transition: all 0.2s;
}
.post-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.post-brand-badge { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; font-weight: 500; background: rgba(78,130,255,0.12); color: var(--accent); }
.post-date { font-size: 11px; color: rgba(232,234,240,0.35); }
.post-title { font-family: 'Orbitron', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.4; }
.post-excerpt { font-size: 13px; color: rgba(232,234,240,0.55); line-height: 1.7; margin-bottom: 16px; }
.post-read-more { font-size: 12px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.post-read-more:hover { text-decoration: underline; }

/* ── FEATURED HERO POST ── */
.post-hero {
  position: relative;
  background: #0f1520;
  border: 1px solid rgba(78,130,255,0.25);
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.post-hero:hover { border-color: rgba(78,130,255,0.5); transform: translateY(-2px); }
.post-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #7c5cff);
  border-radius: 16px 16px 0 0;
}
.post-hero-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(78,130,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.post-hero-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.post-featured-badge {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 600;
  background: rgba(78,130,255,0.15); color: var(--accent);
  border: 1px solid rgba(78,130,255,0.3);
}
.post-hero-brand-badge {
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 500;
  background: rgba(255,255,255,0.06); color: rgba(232,234,240,0.6);
}
.post-hero-date { font-size: 11px; color: rgba(232,234,240,0.35); margin-left: auto; }
.post-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff;
  line-height: 1.35; margin-bottom: 14px;
}
.post-hero-excerpt {
  font-size: 14px; color: rgba(232,234,240,0.6);
  line-height: 1.8; margin-bottom: 24px;
  max-width: 680px;
}
.post-hero-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; font-family: 'Orbitron', sans-serif;
  color: #fff; background: var(--accent);
  padding: 10px 22px; border-radius: 8px;
  transition: all 0.2s; text-decoration: none;
}
.post-hero-link:hover { background: var(--accent-dark); transform: translateY(-1px); }

@media (max-width: 768px) {
  .post-hero { padding: 28px 22px; }
  .post-hero-title { font-size: 17px; }
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-blurb { font-size: 14px; color: rgba(232,234,240,0.55); line-height: 1.8; margin-bottom: 24px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link-item { display: flex; align-items: center; gap: 12px; }
.contact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.contact-link-item a { font-size: 13px; color: rgba(232,234,240,0.5); transition: color 0.2s; }
.contact-link-item a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(232,234,240,0.35); font-weight: 500; }
.form-input, .form-select, .form-textarea {
  background: var(--bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 10px 14px; font-size: 14px; color: var(--text); font-family: 'Exo 2', sans-serif;
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(78,130,255,0.5); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select option { background: var(--bg2); }
.submit-btn {
  background: var(--accent); color: #fff; border: none; border-radius: 8px;
  padding: 12px 28px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Orbitron', sans-serif; font-weight: 700; cursor: pointer;
  transition: all 0.2s; align-self: flex-start;
}
.submit-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.form-success { display: none; padding: 14px; background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); border-radius: 8px; color: #4ade80; font-size: 13px; }

/* ── FOOTER ── */
footer {
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; }
.footer-copy { font-family: 'Orbitron', sans-serif; font-size: 11px; letter-spacing: 2px; color: rgba(232,234,240,0.3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(232,234,240,0.35); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── CUSTOM PAGES ── */
.page-content { font-size: 15px; color: rgba(232,234,240,0.75); line-height: 1.9; max-width: 860px; }
.page-content h1 { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 700; color: #fff; margin: 32px 0 14px; }
.page-content h2 { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin: 28px 0 12px; }
.page-content h3 { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 700; color: var(--accent); margin: 22px 0 10px; }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--accent); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }
.page-content blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; margin: 20px 0; background: rgba(78,130,255,0.06); border-radius: 0 8px 8px 0; font-style: italic; }
.page-content img { max-width: 100%; border-radius: 10px; margin: 16px 0; }
.page-content hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 32px 0; }
.page-content strong { color: #fff; font-weight: 600; }

/* ── SINGLE POST ── */
.post-page { max-width: 760px; margin: 0 auto; padding: 60px 40px; }
.post-page-back { font-size: 12px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; display: inline-block; }
.post-page-back:hover { text-decoration: underline; }
.post-page-title { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 16px; }
.post-page-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.post-page-content { font-size: 15px; color: rgba(232,234,240,0.6); line-height: 1.9; }
.post-page-content p { margin-bottom: 18px; }
.post-page-content h2 { font-family: 'Orbitron', sans-serif; font-size: 18px; color: #fff; margin: 28px 0 12px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-bar { padding: 12px 20px; grid-template-columns: 1fr auto; }
  .nav-right { display: none; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(10,13,20,0.98); padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 200; justify-self: unset;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  /* Dropdowns stack inline on mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; display: none; box-shadow: none;
    border: none; border-radius: 0; padding: 0 0 0 16px;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { padding: 6px 12px; }
  .hero { padding: 40px 20px 36px; }
  .logo-mark { flex-direction: column; text-align: center; }
  .brand-name { font-size: 22px; text-align: center; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
