/* Base logo style */
.logo-text {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: none !important;
  animation: none !important;
}

/* Tech rounded / futuristic font */
.logo-tech-rounded {
  font-family: "Michroma", sans-serif;
  font-weight: 1000;
}

/* Stacked layout */
.logo-stacked {
  line-height: 1.4;
  display: inline-block;
}

section {
  scroll-margin-top: 100px; /* similar to header height */
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
  line-height: 1.6;
}

/* Layout */
.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  
}

/* Header & Nav */
header {
  background-color: #0a1a3c;
  color: #ffffff;
  padding: 0.75rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 50;        /* modest z-index is OK */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 450px;
  height: 100px;
}

.brand-logo img {
  height: 180px;
  width: auto;
  display: block;
}

.brand-logo {
  width: 90px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 100;
  font-size: 1rem;
}

.brand-subtitle {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  opacity: 0.8;
  width: 450px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

nav a:hover {
  color: #f97316;
}

nav .active {
  color: #f97316;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #111827;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  border: 1px solid #9ca3af;
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  border-color: #f97316;
  color: #f97316;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #1d3a70 0, #020617 55%);
  color: #ffffff;
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

/* merged hero-title styles */
.hero-title {
  font-size: 2rem;
  font-weight: 800;
   align-items: flex-start;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 540px;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.80rem;
  color: #9ca3af;
}

.hero-card {
  background: #000; /* pure black */
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(148,163,184,0.5);
  font-size: 0.85rem;
}

.hero-row-2 {
  display: flex;
  align-items: center;
  gap: 24px;              /* space between text and image */
  margin-top: 20px;
}

.hero-text-image {
  display: flex;
  align-items: flex-start;
  gap: 8px;                 /* reduces space between text & image */
}

/* Paragraph styling */
.hero-text-image .hero-subtitle {
  margin: 0 !important;     /* removes extra space */
  flex: 2;                  /* gives more width to paragraph */
}

/* Image styling */
.hero-side-image {
  width: 200px !important;  /* reduce image size */
  height: 150px;
  flex-shrink: 0;
  border-radius: 10px;
  margin: 0 !important;     /* removes unwanted spacing */
}

.hero-screenside-image {
  width: 210px !important;  /* reduce image size */
  height: 160px;
  flex-shrink: 0;
  border-radius: 10px;
  margin: 0 !important;     /* removes unwanted spacing */
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background-color: #f97316;
  color: #111827;
  margin-bottom: 0.4rem;
}

.bullet-list {
  list-style: none;
  padding-left: 20px; /* space for custom bullet */
}

.bullet-list li {
  position: relative;
  margin-bottom: 6px;
}

.bullet-list li::before {
  content: "•";        /* your custom bullet */
  position: absolute;
  left: -20px;         /* position bullet */
  top: 0;
  color: #f97316;      /* orange */
  font-size: 18px;
  line-height: 1;
}

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.stat {
  background: #111827;
  color: #e5e7eb;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  font-size: 0.8rem;
}

/* Contact Form */
.form-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  border: 1px solid #e5e7eb;
  max-width: 600px;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #374151;
}

input, textarea, select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* MAIN FOOTER CONTAINER */
.site-footer {
  background: #0f0f0f;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

/* CENTER INNER WRAPPERS */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;  /* stack everything vertically */
  align-items: center;     /* center horizontally */
  gap: 12px;               /* spacing between items */
}

/* CENTER FOOTER LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f97316;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* PATENT BLOCK CENTER (merged) */
.footer-patent {
  margin: 20px auto 10px;
  max-width: 900px;
  line-height: 1.5;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 5px;
}

 /* Responsive */



  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-text-image {
    flex-direction: column;
    text-align: left;
  }
}



/* Logo link helpers */
.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo {
  height: 100px; /* adjust as needed */
  cursor: pointer;
}

/* Founder note block */
.founder-note {
  background: #f9f9f9;
  border-left: 4px solid #f97316;   /* your brand orange */
  padding: 25px 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.founder-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.founder-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.founder-signature {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
  color: #111;
}

/* Home buttons */
.home-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #f97316;         /* your orange */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s ease;
}

.home-btn:hover {
  opacity: 0.9;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #f97316;
  color: #f97316;
}

.secondary-btn:hover {
  background: #f97316;
  color: #fff;
}

.home-btn-container {
  display: flex;
  gap: 12px;
}

.home-btn-container.right-align {
  justify-content: flex-end;   /* moves buttons to the right */
}

/* Hero row layout */
.hero-row {
  display: flex;
  justify-content: space-between; /* title left, button right */
  align-items: center;
  margin-bottom: 15px;
}

.hero-partner-btn {
  white-space: nowrap; /* ensures button never breaks to next line */
}

/* inline icon */
.inline-icon img {
  width: 50px;       /* adjust size */
  height: 50px;
  vertical-align: middle;
  margin-right: 4px; /* spacing between icon & text */
}

/* Legal / Help pages */
.legal-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px 60px;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 8px;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 4px;
}

.legal-meta {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
}

.legal-page ul {
  padding-left: 18px;
  margin-top: 5px;
}

/* Help Center specific layout */
.help-center-page h1 {
  text-align: center;
}

.help-center-page .legal-meta {
  text-align: center;
}

/* Card grid for help topics */
.help-center-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0 40px;
}

.help-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 18px 16px;
  border-left: 4px solid #f97316; /* brand orange */
}

.help-card h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.help-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.help-card a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #f97316;
}

.help-card a:hover {
  text-decoration: underline;
}

/* FAQ section styling */
.help-faq h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.help-faq h3 {
  margin-top: 18px;
  margin-bottom: 4px;
}

.help-faq p {
  font-size: 0.95rem;
  line-height: 1.6;
}





/* Container for thumbnails */
.image-hover-preview {
  display: flex;
  gap: 12px;
}

/* Thumbnail image */
.hero-side-image {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}



/* Zoom icon */
.hero-side-image::after {
  content: "🔍";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .hero-side-image:hover::after {
    opacity: 0.9;
  }
}


/* ================================
   Fullscreen preview overlay
   ================================ */

/* Wrapper to position close button relative to image */
.image-preview-wrapper {
  position: relative;
  display: inline-block;
}

/* Preview image */

.image-preview-overlay img {
  max-width: 20vw;
  max-height: 30vh;
  border-radius: 14px;
  animation: zoomIn 0.25s ease;
}



/* Close button */
.image-preview-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); }
  to   { transform: scale(1); }
}

/* Split hero layout */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text slightly larger */
  align-items: center;
  gap: 2rem;
}

/* Text block */
.hero-content {
  max-width: 600px;
}

/* Image block */
.hero-image img {
  width: 400px;
  max-width: 400px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}


.hero-desc-columns {
  display: flex;
  gap: 24px;
  margin-bottom: 1.5rem;
}

.hero-desc-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin: 0;
}

/* =========================
   Mobile responsive styles
   ========================= */
@media (max-width: 768px) {

  /* Stack text columns */
  .hero-desc-columns {
    flex-direction: column;
    gap: 12px;
  }

  /* Wrap images */
  .image-hover-preview {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero split layout */
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hero image */
  .hero-image img {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  /* Image sizing on mobile */
  .hero-side-image {
    width: 45%;
  }
}

/* =========================
   Hover effects (desktop only)
   ========================= */
@media (hover: hover) {
  .hero-side-image:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(0,0,0,0.25);
  }
}


.hero-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1rem;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #e5e7eb;
  backdrop-filter: blur(6px);
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: #f97316; /* brand orange */
  flex-shrink: 0;
}

/* Mobile wrap nicely */
@media (max-width: 768px) {
  .hero-feature-tags {
    justify-content: center;
  }
}


.platform-intro {
  display: flex;
  align-items: center;      /* vertically center logo & text */
  gap: 1.5rem;              /* space between logo and text */
  max-width: 1100px;
}

.logo-img {
  width: 200px;              /* adjust as needed */
  height: auto;
  flex-shrink: 0;           /* prevents image from shrinking */
}

.platform-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #e5e7eb;    ;
}

.platform-brand {
  font-weight: 700;
  color: #2563eb;           /* blue */
}

.platform-company {
  font-weight: 600;
  color: #f97316;           /* orange */
}

/* Mobile optimization */
@media (max-width: 768px) {
  .platform-intro {
    flex-direction: column;
    text-align: center;
  }

  .logo-img {
    width: 80px;
  }
}


#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2147483647;
  justify-content: center;
  align-items: center;
}

#videoModal video {
  max-width: 70vw;
  max-height: 70vh;
  border-radius: 16px;
}


#closeVideo {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


/* IMAGE PREVIEW OVERLAY */
.imgPreviewOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
}


.imgPreviewOverlay img {
  max-width: 60vw;   /* width relative to viewport */
  max-height: 60vh;  /* height relative to viewport */
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}


.imgPreviewClose {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}


.logo-img {
  width: 150px;
  height: auto;
}

.logo1-img {
  width: 400px;
  height: auto;
}

/* =================================================
   AVENCHEER MOBILE FIXES (CRITICAL)
   Append this at the END of style.css
   ================================================= */

/* --- Hard stop for horizontal overflow --- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* --- Ensure all media is responsive --- */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =================================================
   MOBILE LAYOUT FIXES
   ================================================= */
@media (max-width: 768px) {

  /* ---------------- Header / Nav ---------------- */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  .brand,
  .brand-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
  }

  .brand-logo img {
    height: 72px;
  }

  /* ---------------- Hero Grid ---------------- */
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero {
    padding: 2.25rem 0;
  }

  /* ---------------- Hero Row ---------------- */
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-partner-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* ---------------- Platform Intro ---------------- */
  .platform-intro {
    flex-direction: column;
    text-align: center;
  }

  video.logo-img {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* ---------------- Image Preview Rows ---------------- */
  .image-hover-preview {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-side-image,
  .hero-screenside-image {
    width: 100% !important;
    height: auto;
  }

  /* ---------------- Buttons ---------------- */
  .home-btn-container {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
    text-align: center;
  }

  /* ---------------- Feature Tags ---------------- */
  .hero-feature-tags {
    justify-content: center;
  }

  /* ---------------- Cards & Stats ---------------- */
  .hero-card {
    margin-top: 1.5rem;
  }

  .stats {
    justify-content: center;
  }
}

/* =================================================
   HERO VIDEO – REMOVE PLAYER UI FLASH
   ================================================= */
.hero-video {
  pointer-events: none;
}

/* Hide native video UI (iOS / Android / Chrome) */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}



/* =================================================
   HAMBURGER MENU – AVENCHEER
   ================================================= */

.brand-logo {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Push hamburger to right */
.nav-toggle {
  margin-left: auto;      /* ⬅ THIS is the key */
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Hamburger bars */
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* =========================
   MOBILE BEHAVIOR
   ========================= */
@media (max-width: 768px) {

  .main-nav {
    width: 100%;
    justify-content: flex-end;
  }

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Hide links initially */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a1a3c;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links li {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* Open state */
  .nav-links.open {
    max-height: 420px; /* enough for all links */
  }

  /* Animate hamburger to X */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================================
   COMPANY LOGO – ABSOLUTE FINAL FIX
   ========================================= */

/* Prevent flexbox from shrinking logo */
.brand-logo,
.brand-logo a,
.brand-logo img {
  flex-shrink: 0 !important;
}

/* DESKTOP – LOCK SIZE */
header .brand-logo img.company-logo {
  height: 180px !important;
  width: auto !important;
  max-width: none !important;
  min-height: 180px !important;
  object-fit: contain;
}

/* Ensure header can fit logo */
header {
  min-height: 110px;
}

/* LAPTOP */
@media (max-width: 1280px) {
  header .brand-logo img.company-logo {
    height: 180px !important;
    min-height: 180px !important;
  }

  header {
    min-height: 98px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  header .brand-logo img.company-logo {
    height: 120px !important;
    min-height: 120px !important;
  }

  header {
    min-height: 120px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  header .brand-logo img.company-logo {
    height:140px !important;
    min-height: 140px !important;
  }

  header {
    min-height: 90px;
    padding: 1rem 0;
  }
}

/* SMALL PHONES */
@media (max-width: 600px) {
  header .brand-logo img.company-logo {
    height: 130px !important;
    min-height: 130px !important;
  }

  header {
    min-height: 80px;
  }
}
