:root {
  --bg: #07111f;
  --panel: #0d1b2e;
  --panel-2: #10243c;
  --text: #e9f1fb;
  --muted: #a9b8cc;
  --line: rgba(255,255,255,0.09);
  --accent: #39a0ff;
  --accent-2: #7cc5ff;
  --success: #46d3a7;
  --shadow: 0 18px 50px rgba(0,0,0,0.28);
  --max: 1200px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #07111f 0%, #091625 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 14px; }
.section-intro { max-width: 760px; color: var(--muted); margin: 0 0 26px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn.primary { background: linear-gradient(135deg, var(--accent), #2e7dff); color: #fff; box-shadow: 0 10px 30px rgba(57,160,255,.25); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.secondary { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn.secondary:hover { background: rgba(255,255,255,0.05); }
.btn.small { min-height: 40px; padding: 0 16px; font-size: .95rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(7,17,31,.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #77c7ff);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(57,160,255,.28);
}
.brand small { display: block; color: var(--muted); font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a { color: var(--muted); font-size: .96rem; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  width: 46px;
  height: 46px;
}
.mobile-panel {
  display: none;
  padding: 0 0 16px;
}
.mobile-panel.open { display: block; }
.mobile-links {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}
.mobile-links a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 60px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .28;
}
.hero::before {
  width: 260px;
  height: 260px;
  background: var(--accent);
  top: 40px;
  right: -70px;
}
.hero::after {
  width: 220px;
  height: 220px;
  background: var(--success);
  bottom: -50px;
  left: -40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: .98;
  margin: 0 0 20px;
  letter-spacing: -.04em;
}
.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 720px;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}
.metric span { color: var(--muted); font-size: .96rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3, .card h4 { margin: 0 0 12px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 14px 0 0 18px; padding: 0; color: var(--muted); }
.card li + li { margin-top: 6px; }

.architecture {
  position: relative;
  overflow: hidden;
}
.arch-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}
.arch-item {
  padding: 20px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  min-height: 120px;
  display: grid;
  place-items: center;
}
.arch-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: rgba(57,160,255,.14);
  border: 1px solid rgba(57,160,255,.25);
  color: var(--accent-2);
  font-size: 1.3rem;
}
.arch-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-size: 1.2rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-pill {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: .95rem;
}

.page-hero {
  padding: 88px 0 40px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at top right, rgba(57,160,255,.12), transparent 24%), linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
}
.page-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.kicker-list,
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(70,211,167,.12);
  border: 1px solid rgba(70,211,167,.24);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: .85rem;
  flex: none;
  margin-top: 2px;
}

.stats-band {
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(57,160,255,.14), rgba(70,211,167,.08));
  border: 1px solid rgba(255,255,255,.08);
}
.stats-band .grid-4 { gap: 14px; }
.stats-band .metric { background: rgba(0,0,0,.12); }

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.table th, .table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table th { color: var(--text); font-weight: 700; font-size: .96rem; }
.table td { color: var(--muted); }

.cta-band {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(57,160,255,.16), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.cta-band h3 { margin: 0 0 8px; font-size: 1.65rem; }
.cta-band p { margin: 0; color: var(--muted); max-width: 700px; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; }
.form-grid { display: grid; gap: 16px; }
.input, .textarea, select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font: inherit;
}
.textarea { min-height: 160px; resize: vertical; }
label { display: block; font-size: .94rem; margin-bottom: 8px; color: #cfe0f3; }
.form-note { color: var(--muted); font-size: .92rem; }

.footer {
  padding: 28px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(57,160,255,.22);
  background: rgba(57,160,255,.08);
  color: var(--accent-2);
  padding: 8px 12px;
  font-size: .9rem;
  margin-bottom: 18px;
}
.small-muted { color: var(--muted); font-size: .95rem; }
.checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start; color: var(--muted);
}
.checklist li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero-grid,
  .grid-2,
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .metrics-grid, .arch-flow { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  .nav-links, .nav-actions .btn.secondary { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .grid-3, .grid-4, .metrics-grid, .arch-flow { grid-template-columns: 1fr; }
  .hero { padding-top: 76px; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.6rem); }
  .section { padding: 68px 0; }
}


/* Added media styling */
.hero-media-card { position: relative; }
.hero-product-image {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.28));
}
.hero-media-spacer { height: 4px; }
.training-highlight { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.section-image {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.banner-image { max-height: 360px; object-fit: cover; }
.tall-image { max-height: 420px; object-fit: contain; }
.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.strip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.media-intro { align-items: center; }
.product-card { overflow: hidden; }
.product-image {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.video-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.video-card h3 { margin: 0 0 10px; }
.video-card p { margin: 0 0 16px; color: var(--muted); }
.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1040px) {
  .training-grid, .visual-strip { grid-template-columns: 1fr; }
  .training-highlight { flex-direction: column; align-items: flex-start; }
}


.hero-sales {
  background: radial-gradient(circle at 80% 20%, rgba(57,160,255,.16), transparent 24%), linear-gradient(180deg, #07111f 0%, #091625 100%);
}
.hero-grid-sales {
  grid-template-columns: 1.05fr .95fr;
}
.hero-mini-points {
  display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;
}
.hero-mini-points span {
  padding:10px 14px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,.03); color:var(--muted); font-size:.92rem;
}
.hero-device-card { min-height: 100%; }
.large-device {
  max-width: 380px; border-radius: 22px; background: rgba(255,255,255,.04); padding: 10px; object-fit: contain;
}
.sales-card-grid .product-image { object-fit: cover; }
@media (max-width:1040px){ .hero-grid-sales{grid-template-columns:1fr;} }


.section-dark{background:linear-gradient(135deg,#0f274e 0%,#173b72 100%);color:#fff;}
.section-soft{background:#f5f8fc;}
.light{color:#fff;}
.light-checklist li{color:#eef4ff;}
.light-outline{border-color:rgba(255,255,255,.65);color:#fff;background:transparent;}
.light-outline:hover{background:rgba(255,255,255,.1);}
.feature-panel{padding:32px;border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(10,34,69,.10);}
.section-dark .feature-panel{background:#ffffff;}


/* AES readability fix */
.feature-panel{
  background:#ffffff !important;
  box-shadow:0 20px 60px rgba(0,0,0,0.18);
}

.feature-panel h3{
  color:#111 !important;
}

.feature-panel p{
  color:#333 !important;
}

.feature-panel .small-muted{
  color:#555 !important;
}


/* Global readability upgrade for AES / dark-theme sections */
.section-dark{
  background: linear-gradient(135deg, #0b1f3f 0%, #15315f 100%) !important;
  color: #ffffff !important;
}

.section-dark .eyebrow{
  color: #dbe8ff !important;
}

.section-dark .section-title,
.section-dark .section-title.light,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .light{
  color: #ffffff !important;
}

.section-dark p,
.section-dark .section-intro,
.section-dark .section-intro.light,
.section-dark li,
.section-dark span,
.section-dark .small-muted,
.section-dark .light-checklist li{
  color: #eef4ff !important;
}

.section-dark .feature-bullet{
  background: #ffffff !important;
  color: #0f2a52 !important;
}

.section-dark .feature-panel{
  background: #ffffff !important;
  color: #162033 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22) !important;
}

.section-dark .feature-panel .eyebrow{
  color: #315a9a !important;
}

.section-dark .feature-panel h1,
.section-dark .feature-panel h2,
.section-dark .feature-panel h3,
.section-dark .feature-panel strong{
  color: #111827 !important;
}

.section-dark .feature-panel p,
.section-dark .feature-panel li,
.section-dark .feature-panel span,
.section-dark .feature-panel .small-muted,
.section-dark .feature-panel .section-intro{
  color: #334155 !important;
}

.section-dark .feature-panel .feature-bullet{
  background: #163a7a !important;
  color: #ffffff !important;
}

.section-dark .btn.secondary,
.section-dark .light-outline{
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.75) !important;
}

.section-dark .btn.secondary:hover,
.section-dark .light-outline:hover{
  background: rgba(255,255,255,0.16) !important;
}

/* Extra emphasis for AES sections */
#aes-security,
#aes-security-products{
  scroll-margin-top: 90px;
}

#aes-security .card,
#aes-security-products .card{
  border: 1px solid rgba(19,43,84,0.08);
}


/* FINAL AES FIX - FORCE HIGH CONTRAST */
.feature-panel,
.feature-panel *{
  color:#1f2937 !important;
}

.feature-panel h1,
.feature-panel h2,
.feature-panel h3,
.feature-panel strong{
  color:#111827 !important;
}

.feature-panel p,
.feature-panel li,
.feature-panel span{
  color:#374151 !important;
}

.feature-panel .small-muted{
  color:#4b5563 !important;
}

.feature-panel{
  background:#ffffff !important;
  box-shadow:0 25px 70px rgba(0,0,0,0.25) !important;
}



/* V2 repair: light sections and cards in AES page */
.section-soft,
.section-soft *{
  color:#1f2937;
}

.section-soft .eyebrow{
  color:#60a5fa !important;
}

.section-soft .section-title,
.section-soft h1,
.section-soft h2,
.section-soft h3,
.section-soft strong{
  color:#111827 !important;
}

.section-soft p,
.section-soft li,
.section-soft span,
.section-soft .section-intro,
.section-soft .small-muted{
  color:#475569 !important;
}

.section-soft .card{
  background:#ffffff !important;
  box-shadow:0 22px 55px rgba(15,23,42,0.14) !important;
}

.section-soft .product-card,
.section-soft .product-card *{
  color:#1f2937 !important;
}

.section-soft .product-card h3,
.section-soft .product-card strong{
  color:#111827 !important;
}

.section-soft .product-card p,
.section-soft .product-card li,
.section-soft .product-card span{
  color:#475569 !important;
}

/* explicit fix for AES characteristics cards */
#aes-security .section-soft .card,
#aes-security .card,
#aes-security-products .card{
  border:1px solid rgba(15,23,42,0.06);
}


.brand{
  gap:14px !important;
}
.brand-logo{
  height:56px;
  width:auto;
  display:block;
  object-fit:contain;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-text small{
  color:rgba(255,255,255,0.78);
}
@media (max-width: 900px){
  .brand-logo{height:46px;}
}


/* Logo/header layout fix */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  flex:0 0 auto;
  min-width:0;
  text-decoration:none;
}

.brand-logo{
  height:52px !important;
  width:auto !important;
  display:block !important;
  object-fit:contain !important;
  flex:0 0 auto;
  border-radius:4px;
}

.brand-text{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  line-height:1.05 !important;
  white-space:normal !important;
}

.brand-text > span{
  font-size:1.5rem !important;
  font-weight:800 !important;
  line-height:1 !important;
  color:#ffffff !important;
}

.brand-text small{
  display:block !important;
  margin-top:4px !important;
  font-size:.86rem !important;
  line-height:1.2 !important;
  color:rgba(255,255,255,0.78) !important;
}

.nav-links{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-width:0;
}

.nav-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
}

@media (max-width: 1200px){
  .brand-logo{height:46px !important;}
  .brand-text > span{font-size:1.22rem !important;}
  .brand-text small{font-size:.78rem !important;}
  .nav-links{gap:14px;}
}

@media (max-width: 980px){
  .brand-text > span{font-size:1.08rem !important;}
  .brand-text small{display:none !important;}
  .brand-logo{height:42px !important;}
}

@media (max-width: 860px){
  .nav-links{display:none !important;}
}


/* Brand overlap fix */
.brand{
  max-width: 320px !important;
  overflow: hidden !important;
}

.brand-text{
  min-width: 0 !important;
  overflow: hidden !important;
}

.brand-text > span,
.brand-text small{
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.nav-links{
  margin-left: 10px !important;
}

.nav-actions{
  margin-left: 10px !important;
}

@media (max-width: 1200px){
  .brand{
    max-width: 260px !important;
  }
}


/* FINAL CLEAN FIX - remove overlap completely */
.brand{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  max-width:none !important;
}

.brand-text{
  display:flex !important;
  flex-direction:column !important;
  line-height:1 !important;
}

.brand-text span{
  font-size:18px !important;
  font-weight:700 !important;
  white-space:nowrap !important;
}

.brand-text small{
  font-size:12px !important;
  opacity:0.7;
  white-space:nowrap !important;
}

/* key fix: push nav away */
.nav-links{
  margin-left:40px !important;
}

/* prevent collision */
.nav{
  gap:30px !important;
}



/* FINAL MINIMAL HEADER CLEANUP */
.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav{
  display:grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items:center !important;
  column-gap: 22px !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  margin-right: 8px !important;
  text-decoration:none !important;
  flex:0 0 auto !important;
}

.brand-logo{
  height:42px !important;
  width:auto !important;
  display:block !important;
  object-fit:contain !important;
  border-radius:4px !important;
}

.brand-text{
  display:flex !important;
  align-items:center !important;
  line-height:1 !important;
}

.brand-text > span{
  font-size:16px !important;
  font-weight:700 !important;
  color:#ffffff !important;
  white-space:nowrap !important;
  letter-spacing:.1px !important;
}

.brand-text small{
  display:none !important;
}

.nav-links{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:16px !important;
  margin:0 !important;
  min-width:0 !important;
  flex-wrap:nowrap !important;
}

.nav-links a{
  font-size:14px !important;
  white-space:nowrap !important;
}

.nav-actions{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  margin-left: 10px !important;
  flex:0 0 auto !important;
}

.nav-actions .btn.small{
  padding:10px 16px !important;
  font-size:14px !important;
  white-space:nowrap !important;
}

@media (max-width: 1280px){
  .nav-links{gap:13px !important;}
  .nav-links a{font-size:13px !important;}
  .nav-actions .btn.small{padding:9px 14px !important;font-size:13px !important;}
}

@media (max-width: 1080px){
  .nav-links{display:none !important;}
}

.menu-toggle{
  display:none !important;
}

@media (max-width:1080px){
  .menu-toggle{display:inline-flex !important;}
}
