:root {
  --white--primary: white;
  --black--primary: black;
  --black--secondary: #00000080;
  --accent: #3e8bff;
  --gray--primary: whitesmoke;
  --gray--secondary: #0000001a;
  --white--secondary: #ffffff80;
  --black: black;
  --white: white;
}

body {
  background-color: var(--white--primary);
  color: var(--black--primary);
  letter-spacing: -.01em;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--black--primary);
  text-decoration: none;
}

.nav-link-legal-url {
  color: #0772cf;
  text-decoration: none; 
}


ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 24px;
}

.page-wrapper {
  background-image: url('../images/hero-bg-new.svg');
  background-position: 50% 100px;
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.content {
  flex: 1; /* This makes the content area grow to take up available space */
}

.section {
  padding: 80px 30px;
}

.section.utility-hero {
  padding-top: 180px;
}

.section.utility-changelog {
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding-top: 180px;
  display: flex;
}

.section.hero-section {
  padding-top: 220px;
}

.section.overview-section {
  background-color: #fafafa;
}

.section.features-white {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.features-gray {
  background-color: #fafafa;
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.cta-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.footer-top {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section.footer-bottom {
  background-color: #fafafa;
  padding-top: 16px;
  padding-bottom: 16px;
}

.container {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.style-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.style-caption {
  min-width: 150px;
  font-weight: 500;
}

.typography-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.typography-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.caption {
  color: var(--black--secondary);
  font-weight: 500;
}

.heading-small {
  font-weight: 500;
}

.colors-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.colors-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.paragraph-large {
  font-size: 20px;
  line-height: 28px;
}

.colors-card {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.colors-card.accent {
  background-color: var(--accent);
}

.colors-card.black-primary {
  background-color: var(--black--primary);
}

.colors-card.black-secondary {
  background-color: var(--black--secondary);
}

.colors-card.gray-primary {
  background-color: var(--gray--primary);
}

.colors-card.gray-secondary {
  background-color: var(--gray--secondary);
}

.colors-card.white-primary {
  background-color: var(--white--primary);
}

.colors-card.white-secondary {
  background-color: var(--white--secondary);
}

.buttons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.button-primary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--accent);
  color: var(--white--primary);
  border-radius: 40px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  font-weight: 500;
  display: flex;
}

.button-primary-disabled {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: gray;
  color: var(--white--primary);
  border-radius: 40px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  font-weight: 500;
  display: flex;
}

.button-arrow.rotated-left {
  transform: rotate(90deg);
}

.button-secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--gray--secondary);
  color: var(--black--primary);
  border-radius: 40px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  font-weight: 500;
  display: flex;
}

.utility-changelog-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.license-link {
  text-decoration: underline;
}

.hero-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-description {
  max-width: 430px;
  margin-top: -16px;
}

.container-large {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.gallery-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.15fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.gallery-image {
  border: 1px solid var(--gray--secondary);
  box-shadow: 0 1px 3px 0 var(--gray--secondary), 0 0 0 14px #f7f7f7, 0 0 0 15px var(--gray--secondary);
  border-radius: 34px;
}

.clients-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.clients-list {
  grid-column-gap: 48px;
  grid-row-gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.clients-logo {
  height: 30px;
}

.overview-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  display: flex;
}

.overview-top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-self: center;
  max-width: 430px;
  display: flex;
}

.overview-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.overview-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white--primary);
  box-shadow: 0 1px 3px 0 var(--gray--secondary);
  border-radius: 30px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.heading-medium {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.overview-description {
  margin-top: -4px;
}

.overview-highlight {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--white--primary);
  box-shadow: 0 1px 3px 0 var(--gray--secondary);
  border-radius: 30px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.overview-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  max-width: 440px;
  padding: 32px;
  display: flex;
}

.features-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.features-wrapper.reverse {
  flex-direction: row-reverse;
}

.features-image-wrapper {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.features-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.overview-image-mobile {
  display: none;
}

.features-description {
  margin-top: -8px;
}

.features-image {
  border: 1px solid var(--gray--secondary);
  box-shadow: 0 1px 3px 0 var(--gray--secondary), 0 0 0 14px #f7f7f7, 0 0 0 15px var(--gray--secondary);
  border-radius: 34px;
}

.benefits-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.benefits-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: 3 / 4;
  background-color: var(--black);
  color: var(--white--primary);
  background-image: url('../images/Container.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  flex-direction: column;
  padding: 32px;
  display: flex;
}

.benefits-card.second {
  background-image: url('../images/Container-1_1Container-1.webp');
}

.benefits-card.third {
  background-image: url('../images/Container-2_1Container-2.webp');
}

.benefits-card.fourth {
  background-image: url('../images/Container.webp');
}

.benefits-icon {
  width: 44px;
}

.benefits-description {
  margin-top: -4px;
}

.benefits-caption {
  margin-top: auto;
}

.testimonials-section {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonials-card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  aspect-ratio: 1;
  background-color: var(--gray--primary);
  box-shadow: inset 0 -1px 0 0 var(--gray--secondary), 0 1px 3px 0 var(--gray--secondary), inset 0 0 0 1px var(--gray--secondary);
  border-radius: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.testimonials-logo {
  height: 30px;
}

.cta-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.app-logo {
  display: block;
}

.footer-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.footer-link {
  transition: color .2s;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-copyright {
  color: var(--black--secondary);
}

.footer-copyright-link {
  color: var(--black--secondary);
  transition: color .2s;
}

.footer-copyright-link:hover {
  color: var(--black--primary);
}

.footer-secondary-link {
  color: var(--black--secondary);
  transition: color .2s;
}

.footer-secondary-link:hover {
  color: var(--black--primary);
}

.navigation {
  z-index: 99;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-wrapper {
  background-color: var(--white--primary);
  box-shadow: 0 -1px 0 0 var(--gray--secondary), 0 1px 3px 0 var(--gray--secondary), inset 0 0 0 1px var(--gray--secondary);
  border-radius: 1000px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 540px;
  padding: 16px 16px 16px 24px;
  display: flex;
}

.nav-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: flex;
}

.nav-link {
  transition: color .2s;
}

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

.nav-burger {
  display: none;
}

.help-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  max-width: 520px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.help-card {
  background-color: var(--white--primary);
  box-shadow: inset 0 0 0 1px var(--gray--secondary);
  cursor: pointer;
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow .2s;
}

.help-card:hover {
  box-shadow: inset 0 0 0 1px var(--black--secondary);
}

.help-trigger {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.help-content {
  overflow: hidden;
}

.help-text {
  margin-top: 4px;
}

.changelog-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  max-width: 520px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.changelog-content {
  border-radius: 16px;
  padding: 24px;
}

.changelog-content h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
}

.changelog-content.highlighted {
  background-color: var(--accent);
  box-shadow: 0 -1px 0 0 var(--gray--secondary), 0 1px 3px 0 var(--gray--secondary), inset 0 0 0 1px var(--gray--secondary);
  color: var(--white--primary);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 991px) {
  .page-wrapper {
    background-size: 150%;
  }

  .section {
    padding: 60px 24px;
  }

  .section.utility-changelog {
    padding-top: 160px;
  }

  .section.hero-section {
    background-position: 50% 100%;
    background-size: auto;
  }

  .section.features-white, .section.features-gray {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .gallery-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .gallery-image {
    border-radius: 24px;
  }

  .overview-card {
    padding: 24px;
  }

  .overview-highlight {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .overview-content {
    padding: 24px;
  }

  .overview-image-desktop {
    width: 450px;
  }

  .testimonials-card {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    aspect-ratio: auto;
    padding: 24px;
  }

  .help-wrapper, .changelog-wrapper {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 44px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .section {
    padding: 40px 16px;
  }

  .section.utility-hero {
    padding-top: 160px;
  }

  .section.utility-changelog {
    padding-top: 120px;
  }

  .section.hero-section {
    background-position: 0 100%;
    padding-top: 180px;
  }

  .section.features-white, .section.features-gray {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .style-block {
    flex-direction: column;
  }

  .style-caption {
    min-width: 0;
  }

  .colors-wrapper {
    align-self: stretch;
  }

  .gallery-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .gallery-image {
    width: 320px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-highlight {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-content {
    max-width: none;
  }

  .overview-image-desktop {
    display: none;
  }

  .features-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column-reverse;
  }

  .features-wrapper.reverse {
    flex-direction: column-reverse;
  }

  .features-content {
    text-align: center;
    align-items: center;
    max-width: 330px;
  }

  .overview-image-mobile {
    width: 100%;
    display: block;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-card {
    aspect-ratio: 1;
    padding: 24px;
  }

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

  .footer-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .footer-menu {
    grid-row-gap: 8px;
    flex-wrap: wrap;
  }

  .help-wrapper, .changelog-wrapper {
    max-width: none;
  }
}

@media screen and (max-width: 479px) {
  .section.hero-section {
    background-position: 0 100%;
    background-size: 200%;
    padding-top: 160px;
  }

  .colors-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 80px;
  }

  .gallery-image {
    width: 280px;
  }

  .clients-list {
    grid-column-gap: 32px;
    grid-row-gap: 16px;
  }

  .clients-logo {
    height: 28px;
  }

  .icon-text-container {
    display: inline-flex;         /* Use inline-flex to keep it inline with other content */
    flex-direction: column;       /* Stack items vertically */
    align-items: center;          /* Center the image and text horizontally */
  }
  
  .apps-logo {
    width: 40px;                  /* Set the desired width for the icon */
    height: auto;                 /* Maintain aspect ratio */
    display: block;               /* Ensure the image behaves like a block element */
    margin-bottom: 8px;           /* Add space between the icon and text */
  }
  
  .icon-text-container b {
    display: block;               /* Ensure the text behaves like a block element */
    font-size: 16px;              /* Adjust the font size */
    font-weight: bold;            /* Keep bold text for emphasis */
    text-align: center;           /* Center the text */
  }

  .overview-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .features-image {
    width: 280px;
  }

  .benefits-card {
    aspect-ratio: auto;
  }

  .benefits-caption {
    margin-top: 40px;
  }

  .footer-wrapper.bottom {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrapper {
    border-radius: 28px;
    align-items: flex-start;
    position: relative;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    position: absolute;
    bottom: 16px;
    left: 24px;
    right: 16px;
  }

  .nav-link {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }

  .nav-burger {
    height: 24px;
    padding-left: 4px;
    padding-right: 4px;
    display: block;
  }

  .nav-lottie {
    width: 24px;
    height: 24px;
    display: flex;
  }

  .colors-placeholder {
    display: none;
  }

  .changelog-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#w-node-_2e9c6c52-e74b-a270-87de-e97ceba37aed-a916518b, #w-node-a6cc5305-9daf-8f6d-8819-a57e73ee4cf9-a916518b, #w-node-_70428380-a9ac-b15f-2fef-8e3638baa98a-a916518b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2bb71ef5-4dbc-c41c-ac13-6ca312bc9f38-a916518b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8ba73dfb-a57f-13a8-81f4-7a7dffd1c43a-a916518b, #w-node-be7b9c6d-fd8e-7fcb-318e-84d71e8fb07c-a916518b, #w-node-_98e0e9b7-b002-7224-7976-37dcaf0f4a35-a916518b, #w-node-f22ca2da-c202-4624-2a78-6485a703f571-a916518b, #w-node-b2f55616-1cb4-652a-305e-1206d9c38e25-a916518b, #w-node-_85a80fd0-ba6b-98bf-83c8-bcd767e8c16d-a916518b, #w-node-ada7c97a-1f86-4775-4a8c-891269fa0802-a916518b, #w-node-d5746646-6c14-ec4c-49e4-d0ab3f0cac76-3f0cac73, #w-node-d5746646-6c14-ec4c-49e4-d0ab3f0cac7a-3f0cac73, #w-node-d5746646-6c14-ec4c-49e4-d0ab3f0cac7e-3f0cac73, #w-node-_049499f6-f1a5-51fd-65a2-fd70bc437ddb-a916518d, #w-node-_6ffa030d-8b07-2789-7ed1-e92b58973ea0-a916518d, #w-node-cf0541dd-a85d-bfc3-eabd-25bbcedff082-a916518d, #w-node-ad9b57cf-4542-8b66-94f4-3e011971da79-a916518d, #w-node-_023f4c00-6d24-4455-ff8f-7c11a7fc2ad7-a916518d, #w-node-_92361d28-eac4-2e7f-0d99-95bb593c9016-a916518d, #w-node-_63fc113c-3f76-7558-54ec-f362c87880b3-a916518d, #w-node-_34fa9957-517a-724f-2aa7-f3ef759d23ae-a916518d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

/* Phone Mockup Styles */
.phone-mockup {
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
  border-radius: 25px;
  padding: 20px 12px 30px 12px;
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.phone-mockup .mobile {
  border-radius: 15px;
  overflow: hidden;
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  #w-node-_2e9c6c52-e74b-a270-87de-e97ceba37aed-a916518b, #w-node-_2bb71ef5-4dbc-c41c-ac13-6ca312bc9f38-a916518b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}
