/* Globals */
:root {
  --primary-color: #003bb3;
  --primary-bg-color: white;
  --primary-font-color: #01050d;
  --secondary-font-color: white;
  --tertiary-font-color: #5f5f5f;
  --primary-btn-hover-color: #002f91;
}

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

body,
html {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

main {
  position: relative;
  z-index: 1;
  background: transparent;
}

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

@media (max-width: 1260px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  display: inline-block;
  overflow: clip;
}

.label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

button.primary {
  background-color: var(--primary-color);
  color: var(--secondary-font-color);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 59, 179, 0.2);
}

button.primary:hover {
  background-color: var(--primary-btn-hover-color);
  transform: translateY(-1px);
}

button.primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 59, 179, 0.3);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-bg-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

.logo img {
  width: 140px;
}

.header-nav-links a {
  margin: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-font-color);
}

.header-nav-links sup {
  color: #1a73e8;
  font-size: 0.75rem;
  font-weight: 400;
}

.btn-nav {
  background-color: var(--primary-color);
  color: var(--secondary-font-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-nav:hover {
  background-color: var(--primary-btn-hover-color);
}

@media (max-width: 768px) {
  .header-nav-links {
    display: none;
  }
}

/* Hero Section */
.hero.full-screen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 1.25rem 3.75rem;
  background-color: var(--primary-bg-color);
  text-align: center;
}

.badge {
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 1rem;
  color: var(--primary-font-color);
  margin-bottom: 1rem;
  padding: 1rem 2rem;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-font-color);
}

.hero p {
  font-size: 1.5rem;
  color: var(--tertiary-font-color);
  margin-bottom: 2rem;
}

/* Brands Section */
.brand-strip {
  background-color: black;
  color: var(--secondary-font-color);
  text-align: center;
  padding: 3rem 0;
  overflow: hidden;
}

.brand-strip h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: 100%;
  animation: scroll-continuous 20s linear infinite;
}

.logo-track img {
  width: 70px;
  height: 70px;
  margin: 0 54px;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll-continuous {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Industries Section */
.industries {
  padding: 7.5rem 0 5rem 0;
  background: var(--primary-bg-color);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Title block spans 2 columns */
.industry-intro {
  grid-column: span 2;
}

.industry-intro h2 {
  font-size: 3.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-font-color);
}

.industry-intro p {
  font-size: 1.5rem;
  color: var(--tertiary-font-color);
  line-height: 1.6;
}

/* Card Styles */
.industry-card {
  background: var(--primary-bg-color);
  padding: 2rem;
  height: 250px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.industry-card img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.industry-card span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-font-color);
}

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-intro {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-intro {
    grid-column: span 1;
  }
}

/* Target Section */
.who-is-it-for {
  color: var(--secondary-font-color);
  background: var(--primary-bg-color);
  padding: 2.5rem 0;
  overflow: hidden;
}

.who-inner {
  position: relative;
  background-color: #01050d;
  border-radius: 24px;
  text-align: center;
  padding-top: 3rem;
}

.who-inner h2 {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -2px;
  padding: 0 2rem;
}

.who-inner p {
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.who-image {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.who-bg {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  .who-image {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .who-image {
    width: 100%;
  }
}

/* Solutions Section */
.solutions {
  padding: 4rem 0;
  background: var(--primary-bg-color);
}

.solutions h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.solutions .tab {
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary-bg-color);
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: background 0.3s ease;
  padding: 1rem 2rem;
  cursor: pointer;
}

.solutions .tab.active {
  background: var(--primary-color);
  color: var(--secondary-font-color);
  border-color: var(--primary-color);
}

.tab-content .tab-panel {
  display: none;
}

.tab-content .tab-panel.active {
  display: block;
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.solution-text h3 {
  font-size: 2.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.solution-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--tertiary-font-color);
}

.solution-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .solution-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solution-image img {
    max-width: 100%;
  }
}

/* Additional Features Section */
.additional-features {
  padding: 4rem 0;
  background: var(--primary-bg-color);
}

.additional-features h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: var(--primary-bg-color);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-card img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  margin: 0.75rem 0 1rem 0;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-font-color);
}

.feature-card p {
  font-size: 1rem;
  color: var(--tertiary-font-color);
  line-height: 1.5;
}

.feature-card strong {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* AXp Studio Section */
.axp-studio {
  text-align: center;
  padding: 4rem 0;
  background: var(--primary-bg-color);
}

.axp-studio h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
}

.axp-studio p {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--tertiary-font-color);
}

.axp-studio .wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.axp-studio .tabs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 200px;
  flex-shrink: 0;
}

.axp-studio .tab {
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary-bg-color);
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: background 0.3s ease;
  padding: 1rem;
  cursor: pointer;
}

.axp-studio .tab.active {
  background: var(--primary-color);
  color: var(--secondary-font-color);
}

.studio-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--primary-bg-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.audio-pair {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.audio-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: var(--primary-bg-color);
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: var(--primary-color);
  color: var(--secondary-font-color);
}

.play-btn .icon {
  width: 32px;
  height: 32px;
  margin-top: 0.25rem;
}

.waveform {
  flex-grow: 1;
  min-width: 100px;
  height: 120px;
}

.studio-cta {
  margin-top: 2rem;
}

/* Footer */
.footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: var(--secondary-font-color);
  padding-top: 2rem;
  z-index: 0;
  pointer-events: auto;
}

.footer-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 0;
}

.footer-row.title {
  text-align: center;
}

.footer-row.nav-links {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 48px;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-font-color);
  gap: 2rem;
}

.footer-row.split {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

.address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.address span {
  font-size: 0.875rem;
  font-weight: 400;
}

.flag {
  width: 28px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.footer-separator {
  border: none;
  border-top: 1px solid #333;
  margin: 1rem 0 0;
}

.bottom-row {
  font-size: 0.875rem;
  align-items: center;
}

.privacy-policy {
  color: var(--secondary-font-color);
  text-decoration: none;
  font-weight: 500;
}