@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYREGULAR.woff2') format('woff2'),
       url('assets/fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYMEDIUM.woff2') format('woff2'),
       url('assets/fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('assets/fonts/SFPRODISPLAYBOLD.woff2') format('woff2'),
       url('assets/fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

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

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 82px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 11px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  gap: 10px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.btn-primary {
  background-color: black;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: black;
  border: 1px solid black;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.btn-cyan {
  background-color: #53F7E6;
  color: black;
  border: none;
}

.btn-cyan:hover {
  background-color: #48D9C7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main {
  padding-top: 0;
  padding-bottom: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 33.66px;
  height: 31.26px;
}

.logo-text {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  font-family: "SF Pro Display", sans-serif;
  font-style: normal;
  line-height: normal;
  text-align: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 8px;
}

.logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}

.nav-link {
  font-size: 20px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #555;
}

.nav-link.active {
  text-decoration: underline;
}

.tag-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F6F6F6;
  padding: 5px 19px;
  border-radius: 30px;
  width: fit-content;
}

.section-tag.no-bg {
  background-color: transparent;
}

.section-tag.no-bg .tag-icon {
  width: 32px;
  height: 30px;
}

.section-tag.no-bg .tag-text {
  font-size: 30px;
  font-weight: 700;
}

.tag-icon {
  width: 18.70px;
  height: 17.37px;
  display: block;
}

.tag-text {
  font-size: 14px;
  font-weight: 700;
}

.highlight-bg-cyan {
  background-color: #53F7E6;
  color: black;
}

.highlight-bg-white {
  background-color: white;
  color: black;
}

.faq-section {
  margin-bottom: 80px;
  width: 100%;
  box-sizing: border-box;
}

.faq-section .section-title {
  font-size: 50px;
  font-weight: 500;
  color: black;
  margin: 0 0 40px 0;
  text-align: center;
}

.faq-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-image-container {
  width: 215px;
  flex-shrink: 0;
}

.faq-image {
  width: 100%;
  height: auto;
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  max-width: 600px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0 0 10px 0;
  font-size: 22px;
  font-weight: 500;
  color: black;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-answer p {
  margin: 0 0 10px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .page-container {
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  h1, .pricing-hero-title, .faq-section .section-title {
    font-size: 36px;
    line-height: 1.2;
  }

  h2, .success-title {
    font-size: 28px;
  }

  h3, .comparison-title {
    font-size: 24px;
  }

  body {
    font-size: 15px;
  }

  .section-tag {
    padding: 4px 15px;
  }

  .tag-text {
    font-size: 13px;
  }

  .section-tag.no-bg .tag-text {
    font-size: 24px;
  }

  .tag-wrapper {
    margin-bottom: 60px;
  }

  .faq-section {
    margin-bottom: 60px;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .faq-image-container {
    width: 50%;
    max-width: 150px;
    margin-bottom: 20px;
  }

  .faq-list {
    width: 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 14px;
  }

  body main {
    margin-top: 0;
    padding-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

@media (max-width: 576px) {
  .page-container {
    padding: 15px 20px;
  }

  h1, .pricing-hero-title, .faq-section .section-title {
    font-size: 28px;
  }

  h2, .success-title {
    font-size: 24px;
  }

  h3, .comparison-title {
    font-size: 20px;
  }

  .section-tag.no-bg .tag-text {
    font-size: 20px;
  }

  .faq-question {
    font-size: 16px;
  }
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 52px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-grow: 1;
}

.main-header .nav-link {
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
}

.main-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: black;
}

.main-header .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-selector {
    position: relative;
    display: block;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-toggle:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.language-toggle:focus-visible {
    outline: 2px solid rgba(8, 207, 187, 0.35);
    outline-offset: 2px;
}

.language-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: rgba(247, 247, 247, 0.95);
    box-shadow: 0px 4px 13.2px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
}

.language-dropdown a {
    display: block;
    padding: 8px 15px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.language-dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    z-index: 1001;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid #eee;
}

.mobile-nav a.nav-link {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.mobile-nav a.nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav .mobile-nav-btn {
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

@media (max-width: 992px) {
    .main-header {
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .main-header .logo-text {
        font-size: 18px;
    }

    .main-nav {
        gap: 2px;
    }

    .main-header .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }

    .main-header .header-actions {
        margin-left: auto;
        gap: 8px;
    }

    .mobile-menu-toggle,
    .mobile-nav {
        display: none !important;
    }
}

/* Styles specifically for the main footer and footer-bottom */

.main-footer {
    background-color: black;
    color: white;
    padding: 35px 39px;
    border-radius: 22px;
    max-width: 1440px; /* Keep max-width */
    margin: 80px auto 0 auto; /* Restore auto horizontal margin, Add top margin */
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 46px;
    margin-bottom: 46px; /* Match gap */
    flex-wrap: wrap;
}

.footer-section {
    /* Defines areas within the footer */
    /* flex: 1; */ /* Example if equal columns needed */
}

/* Specific styles for elements within the footer */
.main-footer .logo-container {
    margin-bottom: 20px; /* Space below logo in footer */
    /* Ensure flex alignment works well with potentially larger icon */
    align-items: center; 
}

/* Set specific size for the logo icon only within the footer */
.main-footer .logo-icon {
    width: 38.7px; /* Calculated width to maintain aspect ratio */
    height: 36px;  /* Match text size visually */
    /* Overrides general .logo-icon size */
}

.main-footer .logo-text {
    color: white; /* Override general logo text color */
    font-size: 36px; /* Specific font size for footer logo text */
    /* font-weight: 500; is inherited from general .logo-text */
}

.footer-address p {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    margin: 0;
}

.footer-address a {
    color: white;
    text-decoration: underline;
}

.footer-platforms-payments {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.platform-icons,
.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.payment-icon {
    height: 18px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

/* Styles for the bottom bar (now outside footer tag in HTML) */
.footer-bottom {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 15px; /* Spacing above bottom bar */
    padding-bottom: 20px; /* Add some space at the very bottom */
    color: black; /* Text color for bottom bar */
}

.footer-bottom a {
    color: black;
    text-decoration: underline;
}

.footer-nav-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.footer-nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-nav-links a:hover {
    color: #0a8a7a;
}

/* --- Mobile Responsiveness --- */

@media (max-width: 992px) {
    .main-footer {
        margin-top: 10px; /* Minimal top margin */
    }

    .footer-content {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center sections */
        text-align: center; /* Center text within sections */
        gap: 30px; /* Adjust gap for vertical layout */
    }

    .footer-section {
        width: 100%; /* Allow sections to take full width */
        max-width: 400px; /* Optional: Limit width for better readability */
        align-items: center; /* Center content within sections like logo/icons */
    }

    .footer-logo-info .logo-container {
        justify-content: center; /* Center logo if it's flex */
    }

    .footer-address p {
        text-align: center; /* Ensure address text is centered */
    }

    .footer-platforms-payments {
        align-items: center; /* Center platform/payment icons */
    }

    .platform-icons,
    .payment-icons,
    .payment-icons-row {
        justify-content: flex-start; /* Align wrapped items to the start */
    }
}

@media (max-width: 768px) {
    .main-footer {
        /* Override base padding for smaller screens */
        padding: 25px 20px; /* Set top/bottom padding to 25px */
    }

    .footer-content {
        /* padding: 30px 20px 10px 20px; */ /* Resetting this as padding is now on main-footer */
        padding: 0; /* Remove padding from inner container */
        gap: 15px; /* Further reduce gap */
        margin-bottom: 0; /* Remove margin-bottom if padding is on parent */
    }

    .main-footer .logo-text {
        font-size: 30px; /* Reduce logo text size */
    }

    .footer-address p {
        font-size: 14px; /* Reduce address text size */
        line-height: 1.6; /* Adjust line height */
    }

    .platform-icon {
        height: 25px; /* Slightly reduce icon size */
    }

    .payment-icon {
        height: 16px; /* Slightly reduce icon size */
    }

    .footer-bottom {
        flex-direction: column; /* Stack bottom links */
        gap: 5px;
        font-size: 14px; /* Reduce bottom bar text size */
        line-height: 1.5;
        padding-bottom: 5px; /* Minimal bottom padding */
    }

    .footer-bottom span:nth-child(2) { /* Hide the second separator pipe */
        display: none;
    }
} 