:root {
  --primary: #0F3E6D;
  --primary-hover: #1a4d80;
  --accent: #008CBA;
  --foreground: #1e293b;
  --muted-foreground: #64748b;
  --light-foreground: #94a3b8;
  --bg-body: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-secondary: #F1F5F9;
  --border-color: #E2E8F0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --container-width: 1200px;
  --header-height: 80px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Libre Baskerville', serif;
  --font-poppins: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body * {
  font-family: var(--font-poppins);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--foreground);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif) !important;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em !important;
  margin-bottom: 1rem;

}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

img,
svg {
  vertical-align: middle;
}

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

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label,
.stat-label,
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}

.btn:not(.btn-outline) {
  background: #fff;
  color: #0B2B4D;
}

.btn:not(.btn-outline):hover {
  background-color: #0B2B4D;
  box-shadow: var(--shadow-sm);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #0B2B4D;
  border-color: transparent;
  color: white;
}

.header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.nav-desktop {
  display: none;
}

.nav-link {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.5rem 1rem;
  letter-spacing: -0.01em;
}

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

.btn-cta-desktop {
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.hero {
  padding: calc(var(--header-height) + 6rem) 0 6rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 12rem;
}

.action-card {
  background-color: var(--bg-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.action-card h3 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.action-card p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
  line-height: 1.5;
}

.card-link-arrow {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-internal {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background-color: var(--primary);
  color: white;
  text-align: left;
}

.hero-internal .hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: white;
}

.hero-internal .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.cta-technical {
  background-color: var(--primary);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-technical h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-internal .btn-outline,
.cta-technical .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.hero-internal .btn-outline:hover,
.cta-technical .btn-outline:hover {
  background-color: white;
  color: var(--primary);
  border-color: white;
}

.legal-box {
  background-color: #FFFBEB;
  border: 1px solid #FCD34D;
  border-left: 4px solid #F59E0B;
  color: #92400E;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin: 3rem auto 0;
  max-width: 900px;
  font-size: 0.9rem;
  display: flex;
  align-items: start;
  gap: 1rem;
  line-height: 1.5;
}

.legal-box,
.footer-disclaimer {
  font-family: var(--font-sans);
  font-style: italic;
}

.legal-box svg {
  color: #F59E0B;
  flex-shrink: 0;
}

section {
  padding: 5rem 0;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.problem-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.title-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.app-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.app-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.app-icon-container {
  display: inline-flex;
  padding: 1rem;
  background-color: rgba(0, 140, 186, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.app-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.app-list {
  list-style: none;
  margin-top: 1.5rem;
  text-align: left;
}

.app-list li {
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature-card .feature-title {
  color: var(--primary);
  margin: 1rem 0;
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.specs-item {
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  text-align: center;
}

.specs-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #051d36;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  text-align: left;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 2rem;
}

.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
}

.footer-slogan {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-address p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-address strong {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-heading {
  color: white;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.legal-note {
  font-style: italic;
  font-family: var(--font-serif);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand-col {
    padding-right: 0;
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact-link {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer {
    padding: 4rem 0 2rem;
  }
}

.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.about-highlight {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--foreground);
}

.stats-section {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  opacity: 0.8;
  margin-bottom: 0;
}

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

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body {
  padding-bottom: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 0.5rem;
  }

  .btn-cta-desktop {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-section {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: heroFadeIn 1s cubic-bezier(0.5, 0, 0, 1) forwards;
  opacity: 0;
}

.hero-animate-delay-1 {
  animation-delay: 0.2s;
}

.hero-animate-delay-2 {
  animation-delay: 0.4s;
}

.action-card,
.app-card,
.problem-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.action-card:hover,
.app-card:hover,
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(15, 62, 109, 0.15);
  border-color: var(--accent);
}

.stat-number-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-unit,
.stat-number-static {
  font-size: 3rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20BA56;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: white;
  color: var(--foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-tooltip.show-initially {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

#nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 990;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav-mobile.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.nav-mobile-link {
  padding: 1rem 2rem;
  color: var(--foreground);
  font-weight: 500;
  border-left: 3px solid transparent;
}

.nav-mobile-link:hover {
  background-color: var(--bg-secondary);
  color: var(--primary);
  border-left-color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0F3E6D;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 62, 109, 0.75);
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-title.text-white,
.hero-subtitle.text-white {
  color: #ffffff !important;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle.text-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

.btn-outline-white {
  background-color: #fff;
  border: 1px solid transparent;
  color: #0B2B4D;
}

.btn-outline-white:hover {
  background-color: transparent !important;
  color: #fff;
  border-color: #fff;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  font-style: italic;
}

.testimonial-author {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--primary);
  font-size: 0.9rem;
}

.smo-image-container {
  width: 100%;
  height: 300px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}

.smo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  padding-bottom: 0 !important;
}

.ocean-waves-container {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  min-height: 100px;
  max-height: 150px;
  margin-bottom: -7px;
  display: block;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves {
    height: 60px;
    min-height: 60px;
  }
}

.hero-grid {
  background-color: var(--primary);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.hero-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero,
.hero-grid {
  border-bottom: none !important;
  position: relative;
  box-sizing: border-box;
}

.ocean-waves-container {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 101%;
  margin-left: -0.5%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.authority-marquee-section {
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B2B4D;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.marquee-item:hover {
  color: var(--primary);
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }
}

@media (max-width: 768px) {
  .marquee-track {
    gap: 2.5rem;
    animation-duration: 25s;
  }

  .marquee-item {
    font-size: 1.25rem;
  }

  .authority-marquee-section {
    padding: 1.5rem 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.logo-icon {
  height: 35px;
  width: auto;
  mix-blend-mode: multiply;
  object-fit: cover;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    height: 40px;
  }
}