/** @format */

/* =========================================
   1. GLOBAL RESETS & BOX SIZING
   ========================================= */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "FiraGO", Arial, sans-serif;
  background: #e9f4f9;
  color: #002736;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   2. FONTS
   ========================================= */
@font-face {
  font-family: "FiraGO";
  src: url("src/FiraGO-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "FiraGO";
  src: url("src/FiraGO-Bold.woff2") format("woff2");
  font-weight: 700;
}

/* =========================================
   3. NAVIGATION STYLES
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 1px 0 #e5e7eb;
  z-index: 100;
}
.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 88px;
  padding: 0 3vw;
  justify-content: space-between;
}
.navbar-logo {
  height: 48px;
  width: 48px;
  margin-right: 32px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.navbar-menu {
  flex: 1;
  display: flex;
  align-items: center;
}
.navbar-links {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-link {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #002736e8;
  text-decoration: none;
  padding: 8px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.navbar-link:hover,
.navbar-link:focus {
  color: #00ece7;
}
.navbar-actions {
  display: flex;
  align-items: center;
  margin-left: 32px;
}

/* CTA Button (Global Style) */
.btn-cta {
  background: linear-gradient(90deg, #36e6ef 0%, #3575ec 100%);
  color: #fff;
  font-family: "FiraGO", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  border: none;
  border-radius: 999px;
  padding: 12px 36px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(54, 230, 239, 0.12);
  text-align: center;
  text-decoration: none;
  margin-left: 32px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-cta:hover,
.btn-cta:focus {
  background: linear-gradient(90deg, #3575ec 0%, #36e6ef 100%);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================
   4. HAMBURGER MENU STYLES (MOBILE)
   ========================================= */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.navbar-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #002736;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggle.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================================
   5. HERO SECTION STYLES
   ========================================= */
.hero-section {
  position: relative;
  width: 100vw;
  height: 650px;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-image {
  width: 100vw;
  height: 650px;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 650px;
  background: linear-gradient(
    90deg,
    rgba(0, 39, 54, 0.63) 0%,
    rgba(0, 39, 54, 0.27) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: auto; /* Fixes unclickable buttons */
}
.hero-content h1 {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}
.hero-buttons {
  display: flex;
  gap: 2.1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.hero-buttons .btn-cta {
  background: linear-gradient(90deg, #36e6ef 0%, #3575ec 100%);
  color: #fff;
  font-family: "FiraGO", Arial, sans-serif;
  font-weight: 700;
  border: none;
  min-width: 210px;
  font-size: 1.18rem;
  padding: 1.1rem 2.1rem;
  border-radius: 9999px;
  margin: 0 8px;
}
.hero-buttons .btn-cta:hover {
  filter: brightness(0.95);
}

/* Feature Section Styles */
.feature-section {
  width: 100vw;
  background: #e9f4f9;
  text-align: center;
  margin-bottom: 0;
}
.feature-image {
  width: 100vw;
  max-width: 100vw;
  height: 420px;
  object-fit: cover;
  display: block;
}
.feature-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem 1rem;
}
.feature-content h2 {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #002736;
}
.feature-content p {
  font-size: 1.11rem;
  color: #002736e8;
  opacity: 0.85;
}

/* CTA Section */
.cta-section {
  width: 100vw;
  background: #e9f4f9;
  text-align: center;
  padding: 5rem 0 4rem 0;
}
.cta-section h2 {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #002736;
}
.cta-section p {
  font-size: 1.1rem;
  color: #002736e8;
  opacity: 0.85;
}
.cta-section .btn-cta {
  background: linear-gradient(90deg, #36e6ef 0%, #3575ec 100%);
  color: #fff;
  font-family: "FiraGO", Arial, sans-serif;
  font-weight: 700;
  border: none;
  min-width: 210px;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  margin-top: 2rem;
  transition: transform 0.2s;
}

/* Footer */
.footer {
  width: 100vw;
  background: #fff;
  color: #002736e8;
  text-align: center;
  padding: 2rem 0;
  font-size: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* =========================================
   6. RESPONSIVE / MOBILE STYLES
   ========================================= */
@media (max-width: 900px) {
  .navbar-container {
    padding: 0 24px;
    height: 72px; 
    flex-direction: row; 
  }
  .navbar-logo {
    margin-right: 0;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-actions {
    display: none;
  }
  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 99;
  }
  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar-links {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .hero-section,
  .hero-image,
  .hero-overlay {
    height: auto !important;
    min-height: 500px;
  }
  .hero-content {
    position: relative; 
    height: auto;
    padding: 80px 24px 60px 24px;
    background: rgba(0, 39, 54, 0.6);
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn-cta {
    width: 100%;
    margin: 8px 0;
  }
  .feature-content h2,
  .cta-section h2 {
    font-size: 1.35rem;
  }
  .feature-image {
    height: 160px;
  }
  .feature-content,
  .cta-section {
    padding: 2rem 1rem;
  }
}

/* =========================================
   7. DIGITAL COCKPIT SPECIFIC STYLES
   ========================================= */
.dc-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(16, 28, 44, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: #fff;
  padding: 64px 24px;
  max-width: 680px;
  margin: auto;
}
.hero-title {
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-cta.btn.btn-primary {
  padding: 12px 36px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #36e6ef 0%, #3575ec 100%);
  color: #fff;
  transition: background 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(54, 230, 239, 0.12);
}
.hero-cta.btn.btn-primary:hover {
  background: linear-gradient(90deg, #3575ec 0%, #36e6ef 100%);
}

.dc-stats-bar {
  background: #173142;
  padding: 56px 0 56px 0;
}
.dc-stats-bar-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.dc-stat-item {
  flex: 1 1 0;
  min-width: 260px;
  text-align: center;
}
.dc-stat-number {
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #36e6ef;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.dc-stat-caption {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 320px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .dc-stats-bar-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .dc-stat-item {
    min-width: 0;
  }
}

.dc-card-list {
  background: #e9f2f5;
  padding: 72px 0 72px 0;
}
.dc-card-list-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}
.dc-card-list-title {
  text-align: center;
  color: #2e3b4e;
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 64px;
  letter-spacing: 0.01em;
}
.dc-card-list-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.dc-card {
  background: none;
  border: none;
  width: 340px;
  text-align: center;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dc-card-icon {
  margin-bottom: 32px;
}
.dc-card-title {
  font-size: 2rem;
  color: #2e3b4e;
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
.dc-card-desc {
  font-size: 1.15rem;
  color: #3f536e;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .dc-card-list-row {
    gap: 32px;
  }
  .dc-card {
    width: 90vw;
    max-width: 480px;
  }
  .dc-card-list-title {
    font-size: 2.1rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 700px) {
  .dc-card-list-row {
    flex-direction: column;
    gap: 40px;
  }
  .dc-card {
    width: 100%;
    max-width: 100vw;
  }
  .dc-card-list-title {
    font-size: 1.6rem;
  }
}

.dc-flex-cards {
  background: #173142;
  padding: 72px 0 72px 0;
}
.dc-flex-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.dc-flex-cards-title {
  text-align: center;
  color: #fff;
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 64px;
  letter-spacing: 0.01em;
}
.dc-flex-card-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.dc-flex-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  max-width: 950px;
  width: 100%;
}
.dc-flex-card-row-reverse {
  flex-direction: row-reverse;
}
.dc-flex-card-img {
  flex: 0 0 400px;
  max-width: 400px;
  min-width: 240px;
}
.dc-flex-card-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #181f29;
}
.dc-flex-card-text {
  flex: 1 1 0;
  min-width: 220px;
  color: #fff;
}
.dc-flex-card-title {
  font-size: 1.38rem;
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.01em;
}
.dc-flex-card-desc {
  font-size: 1.01rem;
  font-weight: 400;
  color: #b8c9d8;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .dc-flex-card-row,
  .dc-flex-card-row.dc-flex-card-row-reverse {
    flex-direction: column !important;
    gap: 24px;
    max-width: 100vw;
    align-items: flex-start;
  }
  .dc-flex-card-img {
    width: 100%;
    max-width: 100vw;
    margin-bottom: 0;
  }
  .dc-flex-card-text {
    width: 100%;
  }
  .dc-flex-cards-title {
    font-size: 1.45rem;
    margin-bottom: 36px;
  }
  .dc-flex-card-list {
    gap: 36px;
  }
}

.contact-global-section {
  width: 100vw;
  background: #5ae7e5;
  padding: 110px 0 110px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-global-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-global-title {
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #173142;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.contact-global-subheading {
  font-size: 1.4rem;
  font-weight: 400;
  color: #173142;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}
.contact-global-btn {
  padding: 20px 44px;
  font-size: 1.18rem;
  font-weight: 500;
  color: #173142;
  background: #fff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(23, 49, 66, 0.05);
}
.contact-global-btn:hover {
  background: #e9f2f5;
}
@media (max-width: 700px) {
  .contact-global-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .contact-global-subheading {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
  .contact-global-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .contact-global-content {
    padding: 0 10px;
  }
}

.global-footer {
  background: #173142;
  padding: 56px 0 40px 0;
  width: 100vw;
  font-family: "FiraGO-Regular", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-main {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  margin-bottom: 30px;
  min-height: 130px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}
.heading-2 {
  font-family: "FiraGO-Bold", Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0;
}
.text-ondarkcolor-primary {
  color: #fff;
}
.footer-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 0 0 auto;
}
.footer-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(20, 43, 63, 0.15);
  background: #fff;
  object-fit: cover;
}
.footer-qr-caption {
  font-size: 1.2rem;
  color: #b8c9d8;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  align-self: center;
  text-align: left;
}
.footer-meta-centered {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 18px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .footer-main {
    gap: 24px;
    min-height: 100px;
  }
  .footer-qr-img {
    width: 90px;
    height: 90px;
  }
  .heading-2 {
    font-size: 2rem;
  }
  .footer-qr-caption {
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 0;
    padding: 0 10px;
  }
  .footer-brand {
    margin-bottom: 4px;
  }
  .footer-qr-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .footer-qr-img {
    width: 72px;
    height: 72px;
  }
  .footer-meta-centered {
    font-size: 0.93rem;
    margin-top: 16px;
  }
}

/* =========================================
   8. BLOG PAGE STYLES (Single Column List Layout)
   ========================================= */
.blog-hero {
  background: #fff;
  padding: 80px 24px 40px 24px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.blog-hero .hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.article-meta {
  color: #36e6ef; /* HERE Cyan */
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-title {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #002736;
  margin: 0 0 24px 0;
  line-height: 1.1;
}
.article-lead {
  font-size: 1.25rem;
  color: #5C6F7F;
  line-height: 1.6;
  font-weight: 400;
}
.article-grid {
  max-width: 1000px;
  margin: 64px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 39, 54, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; 
  flex-direction: row; 
  align-items: stretch;
  min-height: 320px;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 39, 54, 0.12);
}
.article-image {
  width: 45%; 
  min-width: 45%;
  object-fit: cover;
  display: block;
  margin: 0;
}
.article-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-content h2 {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #002736;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}
.article-content p {
  color: #5C6F7F;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.btn-text {
  color: #002736;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  display: inline-block;
  border-bottom: 2px solid #36e6ef;
  transition: color 0.2s;
  align-self: flex-start;
}
.btn-text:hover {
  color: #36e6ef;
}
.article-card:not(:has(.article-image)) .article-content {
  width: 100%;
}
@media (max-width: 900px) {
  .blog-hero {
    padding: 48px 24px;
  }
  .article-title {
    font-size: 2rem;
  }
  .article-grid {
    gap: 32px;
    margin: 40px auto;
  }
  .article-card {
    flex-direction: column;
    min-height: auto;
  }
  .article-image {
    width: 100%;
    min-width: 100%;
    height: 240px;
  }
  .article-content {
    width: 100%;
    padding: 24px;
  }
  .article-content h2 {
    font-size: 1.5rem;
  }
}

/* =========================================
   9. OPTIMIZED MARKETO MODAL (Desktop & Mobile)
   ========================================= */
#marketo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  animation: fadeInBackground 0.3s ease forwards;
}
#marketo-modal .modal-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 39, 54, 0.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
#marketo-modal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  width: 90vw;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-height: 90vh; /* Allow scrolling if tall */
  overflow-y: auto;
  transform: scale(0.95);
  opacity: 0;
  animation: modalPopUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.1s;
}
#marketo-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #F3F6F8;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #173142;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
#marketo-modal .modal-close:hover {
  background: #E5E9EC;
  transform: rotate(90deg);
}
@keyframes fadeInBackground {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalPopUp {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 600px) {
  #marketo-modal {
    align-items: flex-end;
  }
  #marketo-modal .modal-content {
    width: 100vw;
    max-width: none;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 48px 24px;
    margin: 0;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUpBottom 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: translateY(100%);
  }
  #marketo-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #E5E9EC;
    border-radius: 4px;
  }
  #marketo-modal .modal-close {
    top: 20px;
    right: 20px;
    background: transparent;
  }
  @keyframes slideUpBottom {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
}

/* =========================================
   10. PRIVACY POLICY PAGE STYLES
   ========================================= */

.privacy-page {
  background: #fff;
  padding: 80px 24px;
  min-height: 80vh;
}

.privacy-container {
  max-width: 900px; /* Optimal reading width */
  margin: 0 auto;
}

.privacy-title {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #002736;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.privacy-meta {
  color: #5C6F7F;
  font-size: 1.1rem;
  margin-bottom: 64px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 32px;
}

.privacy-body {
  font-size: 1.1rem;
  line-height: 1.8; /* Better readability for long text */
  color: #2E3B4E;
}

.privacy-body h2 {
  font-family: "FiraGO", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #002736;
  margin-top: 48px;
  margin-bottom: 24px;
}

.privacy-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #173142;
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-body p {
  margin-bottom: 24px;
}

.privacy-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.privacy-body li {
  margin-bottom: 12px;
}

.privacy-body a {
  color: #36e6ef; /* HERE Cyan */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.privacy-body a:hover {
  color: #2ab6bc;
  border-bottom-color: #2ab6bc;
}

/* Callout box for external links */
.additional-info {
  background: #F3F6F8;
  padding: 32px;
  border-radius: 12px;
  margin-top: 64px;
  border-left: 4px solid #36e6ef;
}

.additional-info p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 2.5rem;
  }
  
  .privacy-page {
    padding: 48px 24px;
  }
  
  .privacy-body h2 {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}

/* =========================================
   OFFICIAL HERE BRAND FORM STYLING
   ========================================= */
.mktoForm {
  width: 100% !important;
  font-family: "FiraGO", Arial, sans-serif !important;
  padding: 0 !important;
  color: #002736 !important;
}
.mktoForm .mktoLabel {
  font-family: "FiraGO", Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: #173142 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 6px !important;
  display: block !important;
  width: 100% !important;
}
.mktoForm .mktoField,
.mktoForm input[type="text"],
.mktoForm input[type="email"],
.mktoForm input[type="tel"],
.mktoForm input[type="url"],
.mktoForm textarea,
.mktoForm select {
  width: 100% !important;
  height: 44px !important;
  padding: 0 16px !important;
  background-color: #F3F6F8 !important;
  border: 1px solid #CFD9E0 !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  font-family: "FiraGO", Arial, sans-serif !important;
  color: #002736 !important;
  box-shadow: none !important;
  outline: none !important;
  margin-bottom: 15px !important;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box !important;
}
.mktoForm input:focus,
.mktoForm select:focus,
.mktoForm textarea:focus {
  border-color: #36e6ef !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(54, 230, 239, 0.15) !important;
}
.mktoForm textarea {
  height: 100px !important;
  padding-top: 12px !important;
}
.mktoForm .mktoButtonRow {
  width: 100% !important;
  text-align: center !important;
  margin-top: 12px !important;
}
.mktoForm .mktoButtonWrap {
  width: 100% !important;
  margin: 0 !important;
}
.mktoForm .mktoButton {
  background: linear-gradient(90deg, #6df3f8 0%, #96f7d2 100%) !important;
  color: #002736 !important;
  font-family: "FiraGO", Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 16px 48px !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: transform 0.1s ease, filter 0.2s ease;
  width: 100% !important;
  text-transform: none !important;
}
.mktoForm .mktoButton:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}
.mktoForm .mktoButton:active {
  transform: translateY(1px);
}
.mktoForm .mktoAsterisk, 
.mktoForm .mktoOffset, 
.mktoForm .mktoGutter { 
  display: none !important; 
}
