@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("../fonts/MonaSans-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

:root {
  --primary-50-teal: #00aac1;
  --neutral-20-white: #fff;
  --neutral-20-black: #000;
  --secondary-30-nuvia-black: #001011;
  --tints-shades-primary-teal-10: #dbf3f6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mona Sans", sans-serif;
}

a {
  text-decoration: none;
}

/* Navigation Bar */

.nav-bar {
  display: flex;
  padding: 16px 200px;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out both;
}

.nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.29);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-bar.scrolled .nav-links a {
  color: var(--neutral-20-black, #000);
}

.nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--neutral-20-black, #000);
  text-align: right;
  position: relative;

  /* Desktop/Body/Regular/Medium */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  transition: all 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: flex;
  height: 48px;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  background: var(--primary-50-teal, #00aac1);
  color: #ffffff;
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.btn-arrow {
  width: 0;
  opacity: 0;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 170, 193, 0.35);
}

.btn:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

/* Decorative Lines */
.left-line {
  width: 0.4px;
  height: 100%;
  background: #ffffff;
  left: 121px;
  top: 0;
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: lineGrow 1.2s ease-out 0.3s both;
}
.right-line {
  position: absolute;
  top: 0;
  right: 121px;
  width: 0.4px;
  height: 100%;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
  animation: lineGrow 1.2s ease-out 0.3s both;
}

.top-line {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 0.4px;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 111px 120px 0px 120px;
  position: relative;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 24, 28, 0.8) 75%),
    url("../assets/images/Hero Section Image.png") lightgray 50% / cover
      no-repeat;
}

.hero-content {
  position: absolute;
  bottom: 150px;
  left: 120px;
  right: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: #ffffff;
  text-align: center;
  /* Desktop/Headings/H1/Bold */
  font-family: "Mona Sans";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 69.6px */
  padding-bottom: 12px;
  margin: 0px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.highlight {
  color: var(--primary-50-teal, #00aac1);

  /* Desktop/Headings/H1/Bold */
  font-family: "Mona Sans";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.hero-subtext {
  color: var(--neutral-20-white, #fff);
  text-align: center;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  text-align: center;
  margin: 0px;
  animation: fadeUp 0.8s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  margin: 0;
  gap: 24px;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero-btn-1 {
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  background: var(--primary-50-teal, #00aac1);
  color: #ffffff;
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.hero-btn-1:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 170, 193, 0.4);
}

.hero-btn-1:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.hero-btn-1:active {
  transform: scale(0.97);
}

.hero-btn-2 {
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--primary-50-teal, #00aac1);
  color: var(--primary-50-teal, #00aac1);
  transition: all 0.2s ease;
  min-width: 120px;
  cursor: pointer;
}

.hero-btn-2:hover {
  transform: scale(1.03);
  background: rgba(0, 170, 193, 0.1);
}

.hero-btn-2:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.hero-btn-2:active {
  transform: scale(0.97);
}

/* Section 2 */
.section-2 {
  background: var(--neutral-20-white, #fff);
  padding: 120px 120px;
}

.gtq {
  color: var(--neutral-20-black, #000);
  text-align: center;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  margin: 0px;
  padding-bottom: 80px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.gtqb {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.gtqb-1 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.gtqb-2 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.gtqb-3 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.gtbq1-img,
.gtbq2-img,
.gtbq3-img {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  margin: 0px;
}
.gtqb-1,
.gtqb-2,
.gtqb-3 {
  display: flex;
  width: 384px;
  height: 509px;
  padding: 12px 12px 16px 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  background: #f4f4f4;
  margin: 0px;
  transition:
    translate 0.3s ease,
    box-shadow 0.3s ease;
}

.gtqb-1:hover,
.gtqb-2:hover,
.gtqb-3:hover {
  translate: 0 -8px;
  box-shadow: 0 12px 32px rgba(0, 170, 193, 0.15);
}
.gtqb h4 {
  color: var(--neutral-20-black, #000);
  /* Desktop/Headings/H4/Bold */
  font-family: "Mona Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
  align-self: stretch;
  margin: 0;
  padding-bottom: 12px;
}

.gtbq1-pg,
.gtbq2-pg,
.gtbq3-pg {
  color: var(--neutral-20-black, #000);
  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  align-self: stretch;
  margin: 0;
}

/* Section 3 */
.section-3 {
  display: flex;
  position: relative;
  width: 100%;
  padding: 120px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  background: linear-gradient(202deg, #000 45.6%, #09717d 107.74%);
  margin: 0;
  box-sizing: border-box;
}

.s3-top-line {
  width: 100%;
  height: 1px;
  background: #eeffe6;
  top: 120px;
  position: absolute;
  animation: fadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.s3-bottom-line {
  width: 100%;
  height: 1px;
  background: #eeffe6;
  bottom: 120px;
  position: absolute;
}

.loud-text {
  align-self: stretch;
  color: var(--neutral-20-white, #fff);
  font-family: "Mona Sans";
  font-size: 150px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 150px */
  padding: 100px 198px 24px 198px;
  margin: 0;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.loud-btn {
  display: flex;
  width: 509px;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  border-radius: 32px;
  border: 0.8px solid var(--neutral-20-white, #fff);
  color: var(--neutral-20-white, #fff);
  transition: all 0.2s ease;
  margin: 0px 0px 100px 198px;
}

.loud-btn:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

.loud-btn:active {
  transform: scale(0.97);
}

.loud-btn:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.section-4 {
  display: flex;
  padding: 120px 120px;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.s4-header {
  color: var(--secondary-30-nuvia-black, #001011);
  text-align: center;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s4-paragraph {
  color: var(--neutral-20-black, #000);
  text-align: center;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  margin: 0px;
  padding: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s4-inf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 24px;
  padding: 100px 120px 0px 120px;
  width: 100%;
}

.intelligent-routing,
.automatic-tax,
.min15-deployment {
  border-radius: 20px;
  padding: 24px;
  transition:
    translate 0.3s ease,
    box-shadow 0.3s ease;
}

.intelligent-routing:hover,
.automatic-tax:hover,
.min15-deployment:hover {
  translate: 0 -8px;
}

.intelligent-routing {
  background: #eeffe6;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.automatic-tax {
  background: #dbf3f6;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.min15-deployment {
  background: #aae9ff;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.routing-icon,
.tax-icon,
.deployment-icon {
  padding-bottom: 12px;
  margin: 0px;
  transition: transform 0.3s ease;
}

.intelligent-routing:hover .routing-icon,
.automatic-tax:hover .tax-icon,
.min15-deployment:hover .deployment-icon {
  transform: scale(1.1);
}

.routing-title,
.autotax-title,
.deployment-title {
  color: var(--neutral-20-black, #000);

  /* Desktop/Headings/H4/Bold */
  font-family: "Mona Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
  padding-bottom: 84px;
  margin: 0px;
}

.routing-paragraph,
.autotax-paragraph,
.deployment-paragraph {
  color: var(--neutral-20-black, #000);

  /* Desktop/Body/Regular/Regular */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  margin: 0px;
  padding: 0px;
}

.section-5 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%),
    url("../assets/images/Lady and Guy.png") no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.s5-header {
  color: var(--neutral-20-white, #fff);
  text-align: center;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s5-paragraph {
  color: var(--neutral-20-white, #fff);
  text-align: center;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  padding-bottom: 48px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.s5-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
}

.btn.s5-button {
  height: 64px;
  padding: 0 36px;
  align-self: center;
  width: fit-content;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 45%;
}

/* Section 6 */
.section-6 {
  background: var(--tints-shades-primary-teal-10, #dbf3f6);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 194px 120px 194px 120px;
}

.nuvia-cutout {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2580px;
  height: 1448.719px;
  pointer-events: none;
  z-index: 0;
}

.s6-content {
  z-index: 1;
}

.s6-content.left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.s6-header {
  font-family: "Mona Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
  margin: 0px;
  padding-bottom: 20px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s6-paragraph {
  font-family: "Mona Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 165%;
  margin: 0px;
  padding: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.btn.s6-button {
  align-self: flex-start;
  width: fit-content;
  height: 64px;
  padding: 0 36px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 45%;
}

.s6-content.right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.s6-content-rtop,
.s6-content-rbottom {
  display: flex;
  gap: 50px;
}

.invoice-icon,
.location-icon,
.wallet-icon,
.notification-icon {
  padding-bottom: 12px;
  margin: 0px;
}

.genandshare,
.localizedpricing,
.flexpayment,
.instnotif {
  display: flex;
  flex-direction: column;
  width: 384px;
  align-items: flex-start;
}

.genandshare {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.localizedpricing {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.flexpayment {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.instnotif {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 15% cover 55%;
}

.genandshare-heading,
.localized-heading,
.flexpayment-heading,
.instnotif-heading {
  font-family: "Mona Sans";
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 12px;
  margin: 0px;
}

.genandshare-paragraph,
.localized-paragraph,
.flexpayment-paragraph,
.instnotif-paragraph {
  font-family: "Mona Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin: 0px;
  padding: 0px;
}

.section-7 {
  display: flex;
  justify-content: center;
  padding: 120px 120px;
  margin: 0px;
}

.s7-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px;
  gap: 100px;
}

.s7-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.s7-header {
  color: var(--secondary-30-nuvia-black, #001011);
  text-align: center;

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s7-paragraph {
  color: var(--neutral-20-black, #000);
  text-align: center;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  margin: 0px;
  padding: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.s7-card1,
.s7-card2,
.s7-card3 {
  display: flex;
  width: 384px;
  height: 509px;
  padding: 48px 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin: 0px;
}

.s7-card1 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.s7-card2 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.s7-card3 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.greenstamp-illustration,
.setgua-illustration,
.grails-illustration {
  align-self: center;
  order: -1;
  width: auto;
  height: 200px;
  padding-bottom: 24px;
}

.grails-illustration {
  height: 170px;
  padding-top: 30px;
  margin-bottom: 30px;
}

.greenstamp-header,
.setgua-header,
.grails-header {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Headings/H4/Bold */
  font-family: "Mona Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
  padding-bottom: 12px;
  margin: 0px;
}

.greenstamp-paragraph,
.setgua-paragraph,
.grails-paragraph {
  color: var(--secondary-30-nuvia-black, #001011);

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  padding-bottom: 48px;
  margin: 0px;
}

/* Section 8 */
.section-8 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 120px;
  background: var(--primary-50-teal, #00aac1);
  gap: 200px;
}

.s8-header {
  font-family: "Mona Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  margin: 0px;
  padding-bottom: 20px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s8-paragraph {
  font-family: "Mona Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 165%;
  color: #ffffff;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.s8-right {
  display: flex;
}

.s8-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.s8-rail-1,
.s8-rail-2,
.s8-rail-3 {
  padding-left: 24px;
  padding-bottom: 24px;
  border-bottom: 0.8px solid #fff;
}

.s8-rail-1 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.s8-rail-2 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 45%;
}

.s8-rail-3 {
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 50%;
}

.s8-rail:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.s8-rail-label {
  color: var(--neutral-20-white, #fff);
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  padding-bottom: 8px;
  margin: 0px;
}

.s8-rail-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.s8-rail-items span {
  color: #1a1a1a;
  background: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0px;
}

.s8-rail-1 .s8-rail-items span {
  background: #ffffff;
}

.s8-rail-2 .s8-rail-items span {
  background: #aae9ff;
}

.s8-rail-3 .s8-rail-items span {
  background: #eeffe6;
}

.center-line {
  display: none;
}

.s8-borderline {
  display: none;
}

/* Section 9 */
.section-9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 120px 0px 120px;
  margin: 0px;
}

.s9-header {
  font-family: "Mona Sans";
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
  color: var(--secondary-30-nuvia-black, #001011);
  text-align: center;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
  padding-bottom: 100px;
}

.s9-cards {
  display: flex;
  gap: 24px;
}

.s9-body {
  border-radius: 20px;
  background: linear-gradient(180deg, #aae9ff 0%, rgba(170, 233, 255, 0) 100%);
  padding: 100px 50px;
}

.s9-card {
  display: flex;
  padding: 36px;
  border-radius: 12px;
  border-left: none;
  align-items: flex-start;
  gap: 24px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.cent-illustration,
.digcre-illustration,
.b2b-illustration {
  flex-shrink: 0;
}

.s9-divider {
  width: 0.8px;
  background: #001011;
  align-self: stretch;
  display: none;
}

.s9-card:nth-child(2) {
  animation-range: entry 5% cover 45%;
}

.s9-card:nth-child(3) {
  animation-range: entry 10% cover 50%;
}

.s9-card:first-child {
  padding-left: 36px;
}

.s9-card-heading {
  font-family: "Mona Sans";
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  color: var(--secondary-30-nuvia-black, #001011);
  margin: 0px;
  padding-bottom: 12px;
}

.s9-card-paragraph {
  font-family: "Mona Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  color: var(--neutral-20-black, #000);
  margin: 0px;
}

.section-10 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 120px 100px 120px;
  margin: 0px;
  background: linear-gradient(180deg, #001011 51.35%, #00aac1 100%);
}

.s10-header {
  color: var(--neutral-20-white, #fff);

  /* Desktop/Headings/H2/Bold */
  font-family: "Mona Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 50.4px */
  padding-bottom: 20px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.s10-paragraph {
  color: #fff;

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
  padding-bottom: 48px;
  margin: 0px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 5% cover 40%;
}

.s10-buttons {
  display: flex;
  gap: 24px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 10% cover 45%;
}

.s10-btn {
  display: flex;
  height: 48px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  font-family: "Mona Sans";
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.s10-btn .btn-arrow {
  width: 0;
  opacity: 0;
  transition: all 0.2s ease;
}

.s10-btn:hover .btn-arrow {
  width: 18px;
  opacity: 1;
}

.s10-btn-primary {
  background: #ffffff;
  color: var(--primary-50-teal, #00aac1);
  border: 0.8px solid #ffffff;
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.s10-btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
}

.s10-btn-primary:active {
  transform: scale(0.97);
}

.s10-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 0.8px solid #ffffff;
  display: flex;
  height: 64px;
  padding: 0 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.s10-btn-outline:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

.s10-btn-outline:active {
  transform: scale(0.97);
}

.s10-image {
  width: 782.986px;
  height: 522.722px;
}

footer {
  background: #00aac1;
  padding: 0px 120px 100px 120px;
  display: flex;
  flex-direction: column;
}

.footer-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 484px;
  padding: 0px;
}

.footer-paragraph {
  color: var(--neutral-20-white, #fff);

  /* Desktop/Body/Large/Regular */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.footer-divider {
  width: 100%;
  height: 0.4px;
  background: #fff;
  margin-bottom: 50px;
}

.company-title,
.contact-title {
  color: #fff;

  /* Desktop/Body/Regular/Regular */
  font-family: "Mona Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  padding-bottom: 24px;
  margin: 0px;
}

.footer-links a {
  color: #fff;

  /* Desktop/Body/Large/Bold */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 29.7px */
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0.4px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}
.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-elements {
  display: flex;
  padding: 24px 48px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: var(--neutral-20-white, #fff);
  box-shadow:
    0 8px 18px -6px rgba(24, 39, 75, 0.12),
    0 12px 42px -4px rgba(24, 39, 75, 0.12);
  animation: fadeUp linear;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

.copyright-text {
  color: var(--primary-50-teal, #00aac1);

  /* Desktop/Body/Large/Medium */
  font-family: "Mona Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 29.7px */
}

.social-icons {
  display: flex;
  gap: 24px;
}

.social-icons a {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

/* Hamburger Menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-bar.scrolled .hamburger span {
  background: #000;
}

.nav-bar.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-bar.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-bar.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.gtqb {
  align-items: stretch;
}

.s7-cards {
  align-items: stretch;
}

.gtqb-1,
.gtqb-2,
.gtqb-3,
.s7-card1,
.s7-card2,
.s7-card3 {
  height: auto;
}

/* ============================================
   FALLBACK: Browsers without scroll-driven animations
   ============================================ */
@supports not (animation-timeline: view()) {
  .gtq,
  .gtqb-1,
  .gtqb-2,
  .gtqb-3,
  .s3-top-line,
  .loud-text,
  .s4-header,
  .s4-paragraph,
  .intelligent-routing,
  .automatic-tax,
  .min15-deployment,
  .s5-header,
  .s5-paragraph,
  .btn.s5-button,
  .s6-header,
  .s6-paragraph,
  .btn.s6-button,
  .genandshare,
  .localizedpricing,
  .flexpayment,
  .instnotif,
  .s7-header,
  .s7-paragraph,
  .s7-card1,
  .s7-card2,
  .s7-card3,
  .s8-header,
  .s8-paragraph,
  .s8-rail-1,
  .s8-rail-2,
  .s8-rail-3,
  .s9-header,
  .s9-card,
  .s10-header,
  .s10-paragraph,
  .s10-buttons,
  .footer-elements,
  .social-elements {
    animation: none;
  }
}

/* ============================================
   RESPONSIVE: Tablet (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .nav-bar {
    padding: 16px 60px;
  }

  .nav-links {
    gap: 32px;
  }

  .hero-section {
    padding: 111px 60px 0 60px;
  }

  .hero-content {
    left: 60px;
    right: 60px;
  }

  .section-2 {
    padding: 100px 60px;
  }

  .gtqb {
    flex-wrap: wrap;
  }

  .gtqb-1,
  .gtqb-2,
  .gtqb-3 {
    width: calc(50% - 12px);
    height: auto;
  }

  .section-3 {
    padding: 80px 0;
  }

  .loud-text {
    font-size: 80px;
    padding: 80px 60px 24px 60px;
  }

  .loud-btn {
    width: auto;
    margin: 0 0 80px 60px;
  }

  .section-4 {
    padding: 100px 60px;
  }

  .s4-inf {
    padding: 100px 0 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-5 .s5-content {
    padding: 300px 60px 100px 60px;
  }

  .section-6 {
    padding: 100px 60px;
    flex-direction: column;
    gap: 60px;
  }

  .nuvia-cutout {
    width: 1800px;
    height: auto;
  }

  .s6-content.right {
    gap: 32px;
  }

  .s6-content-rtop,
  .s6-content-rbottom {
    gap: 32px;
  }

  .genandshare,
  .localizedpricing,
  .flexpayment,
  .instnotif {
    width: calc(50% - 16px);
  }

  .section-7 {
    padding: 100px 60px;
  }

  .s7-content {
    gap: 72px;
  }

  .s7-cards {
    flex-wrap: wrap;
  }

  .s7-card1,
  .s7-card2,
  .s7-card3 {
    width: calc(50% - 12px);
    height: auto;
  }

  .section-8 {
    padding: 100px 60px;
    flex-direction: column;
    gap: 48px;
  }

  .center-line {
    display: none;
  }

  .s8-borderline {
    width: 100%;
  }

  .section-9 {
    padding: 100px 60px 160px 60px;
    margin-bottom: 160px;
  }

  .s9-body {
    padding: 60px;
  }

  .s9-cards {
    flex-direction: column;
    gap: 0px;
  }

  .s9-card {
    padding: 32px 36px;
  }

  .s9-card:first-child {
    padding-top: 0;
    padding-left: 0;
  }

  .s9-divider {
    display: block;
    width: 100%;
    height: 0.8px;
    align-self: auto;
  }

  .section-10 {
    padding: 100px 60px;
    flex-direction: column;
    align-items: flex-start;
  }

  .s10-buttons {
    flex-direction: column;
    width: 100%;
  }

  .s10-btn-primary,
  .s10-btn-outline {
    width: 100%;
  }

  .s10-content-right {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    margin-top: 48px;
  }

  .s10-image {
    height: auto;
    width: 100%;
    max-width: 500px;
  }

  footer {
    padding: 80px 60px;
  }

  .footer-links {
    width: auto;
    gap: 60px;
  }
}

/* ============================================
   RESPONSIVE: Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  .nav-bar {
    padding: 16px 24px;
  }

  /* Dropdown menu */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
    background: rgba(0, 16, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease;
  }

  .nav-bar.nav-open .nav-links {
    max-height: 300px;
    opacity: 1;
    padding: 8px 24px 16px;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #fff;
    text-align: left;
    border-bottom: 0.4px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* When scrolled, dropdown matches the white navbar */
  .nav-bar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-bar.scrolled .nav-links a {
    color: #000;
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }

  .nav-bar .btn.btn-primary {
    display: none;
  }

  /* Hero */
  .hero-section {
    padding: 80px 24px 0 24px;
  }

  .hero-content {
    left: 24px;
    right: 24px;
    bottom: 80px;
  }

  h1 {
    font-size: 36px;
  }

  .highlight {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-btn-1,
  .hero-btn-2 {
    height: 52px;
    padding: 0 24px;
    font-size: 14px;
    width: 100%;
  }

  .left-line,
  .right-line {
    display: none;
  }

  .top-line {
    top: 70px;
  }

  /* Section 2 */
  .section-2 {
    padding: 60px 24px;
  }

  .gtq {
    font-size: 28px;
    padding-bottom: 48px;
  }

  .gtqb {
    flex-direction: column;
    align-items: center;
  }

  .gtqb-1,
  .gtqb-2,
  .gtqb-3 {
    width: 100%;
    height: auto;
  }

  /* Section 3 */
  .section-3 {
    padding: 60px 0;
    gap: 60px;
  }

  .loud-text {
    font-size: 56px;
    padding: 60px 24px 16px 24px;
  }

  .loud-btn {
    width: auto;
    margin: 0 24px 60px 24px;
    height: 52px;
    padding: 0 24px;
    font-size: 14px;
  }

  .s3-top-line {
    top: 60px;
  }

  .s3-bottom-line {
    bottom: 60px;
  }

  /* Section 4 */
  .section-4 {
    padding: 60px 24px;
  }

  .s4-header {
    font-size: 28px;
  }

  .s4-paragraph {
    font-size: 16px;
  }

  .s4-inf {
    padding: 48px 0 0 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Section 5 */
  .section-5 {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%),
      url("../assets/images/Lady and Guy.png") no-repeat center center / cover;
  }

  .section-5 .s5-content {
    padding: 200px 24px 80px 24px;
  }

  .s5-header {
    font-size: 28px;
  }

  .s5-paragraph {
    font-size: 16px;
  }

  .btn.s5-button {
    height: 52px;
    padding: 0 24px;
    width: 100%;
  }

  /* Section 6 */
  .section-6 {
    padding: 60px 24px;
    flex-direction: column;
    gap: 48px;
  }

  .nuvia-cutout {
    display: none;
  }

  .s6-content.left {
    display: contents;
  }

  .s6-text {
    order: 1;
  }

  .s6-content.right {
    order: 2;
  }

  .s6-header {
    font-size: 28px;
  }

  .s6-paragraph {
    font-size: 16px;
  }

  .btn.s6-button {
    height: 52px;
    padding: 0 24px;
    width: 100%;
    order: 3;
    align-self: stretch;
  }

  .invoice-icon,
  .location-icon,
  .wallet-icon,
  .notification-icon {
    width: 80px;
    height: 80px;
  }

  .s6-content.right {
    gap: 32px;
  }

  .s6-content-rtop,
  .s6-content-rbottom {
    flex-direction: column;
    gap: 32px;
  }

  .genandshare,
  .localizedpricing,
  .flexpayment,
  .instnotif {
    width: 100%;
  }

  /* Section 7 */
  .section-7 {
    padding: 60px 24px;
  }

  .s7-content {
    gap: 60px;
  }

  .s7-header {
    font-size: 28px;
  }

  .s7-paragraph {
    font-size: 16px;
  }

  .s7-cards {
    flex-direction: column;
    align-items: center;
  }

  .s7-card1,
  .s7-card2,
  .s7-card3 {
    width: 100%;
    height: auto;
  }

  .greenstamp-illustration,
  .setgua-illustration,
  .grails-illustration {
    height: 150px;
  }

  .grails-illustration {
    height: 120px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  /* Section 8 */
  .section-8 {
    padding: 60px 24px;
    flex-direction: column;
    gap: 32px;
  }

  .s8-header {
    font-size: 28px;
  }

  .s8-paragraph {
    font-size: 16px;
  }

  .center-line {
    display: none;
  }

  .s8-borderline {
    width: 100%;
  }

  .s8-rail-items {
    flex-wrap: wrap;
  }

  .s8-rail-items span {
    font-size: 14px;
    padding: 6px 12px;
  }

  .s8-rail-1,
  .s8-rail-2,
  .s8-rail-3 {
    padding-left: 0;
  }

  .s8-rail-items {
    gap: 8px;
  }

  /* Section 9 */
  .section-9 {
    padding: 60px 24px;
    margin-bottom: 0px;
    gap: 60px;
  }

  .s9-body {
    padding: 24px;
  }

  .s9-header {
    font-size: 28px;
  }

  .s9-cards {
    flex-direction: column;
    gap: 0px;
  }

  .s9-card {
    padding: 32px 0;
  }

  .s9-card:first-child {
    padding-top: 0;
    padding-left: 0;
  }

  .s9-divider {
    display: block;
    width: 100%;
    height: 0.8px;
    align-self: auto;
  }

  /* Section 10 */
  .section-10 {
    padding: 60px 24px 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .s10-header {
    font-size: 28px;
  }

  .s10-paragraph {
    font-size: 16px;
  }

  .s10-content-right {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    margin-top: 48px;
  }

  .s10-image {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .s10-buttons {
    flex-direction: column;
  }

  .s10-btn-primary,
  .s10-btn-outline {
    height: 52px;
    padding: 0 24px;
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 60px 24px;
  }

  .footer-elements {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .about {
    padding-bottom: 48px;
    border-bottom: 0.4px solid rgba(255, 255, 255, 1);
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .company-links {
    padding-bottom: 32px;
    border-bottom: 0.4px solid rgba(255, 255, 255, 1);
  }

  .social-elements {
    flex-direction: column;
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
  }

  .social-icons {
    gap: 16px;
  }

  /* Hide <br> tags on mobile */
  br {
    display: none;
  }
}

/* ============================================
   RESPONSIVE: Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .highlight {
    font-size: 28px;
  }

  .loud-text {
    font-size: 44px;
  }

  .hero-btn-1,
  .hero-btn-2 {
    height: 48px;
    padding: 0 20px;
  }

  .s10-btn-primary,
  .s10-btn-outline {
    height: 48px;
    padding: 0 20px;
  }
}
