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

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

p {
  font-family: Inter, sans-serif;
}

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

/* body {
  font-family: JetBrains Mono, monospace;
  background: linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.7),
      rgba(16, 185, 129, 0.5),
      rgba(139, 92, 246, 0.6)
    ),
    #111;
  background-blend-mode: overlay;
  color: white;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
} */

p,
a,
button {
  font-family: "Livvic", sans-serif;
}

h1,
h2,
h3,
h4,h5,
h6 {
  font-family: "Figtree", sans-serif;
}

body {
  background: linear-gradient(
      135deg,
      rgba(0, 163, 255, .7),
      rgba(34, 197, 94, .5),
      rgba(124, 58, 237, .6)
    ),
    #0a1119;
  background-blend-mode: overlay;
  color: white;
  overflow-x: hidden;
  cursor: default;
  font-family: "Livvic", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

a.btn {
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background-color: #00a3ff;
  color: white;
}

.btn-primary:hover {
  background-color: #005f83;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 90, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #00a3ff;
  border: 1px solid #00a3ff;
}

.btn-secondary:hover {
  background-color: rgba(0, 90, 255, 0.1);
  transform: translateY(-2px);
}


.nav-container {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
}

.nav-wrapper {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
}

.nav-bar {
  width: 90%;
  max-width: 800px;
  background-color: rgba(10, 17, 25, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 163, 255, 0.15);
  border-radius: 50px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 8px 32px rgba(0, 163, 255, 0.1); */
}

.nav-bar.nav-scrolled {
  background-color: rgba(10, 17, 25, 0.95);
  max-width: 1200px;
  border-radius: 50px;
  border-color: rgba(0, 163, 255, 0.25);
  /* box-shadow: 0 12px 48px rgba(0, 163, 255, 0.15); */
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-image {
  height: 24px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 35px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.nav-scrolled .nav-links {
  opacity: 1;
  max-height: 60px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-bar.nav-scrolled .nav-links a {
  transform: translateY(0);
  opacity: 1;
}

.nav-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-links a:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-links.nav-active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a3ff 0%, #22c55e 100%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #00a3ff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta-desktop {
  display: flex;
  align-items: center;
}

.nav-btn {
  background: linear-gradient(135deg, #00a3ff 0%, #0086d6 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 163, 255, 0.3);
  letter-spacing: 0.3px;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #0086d6 0%, #00a3ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 255, 0.4);
}

.nav-menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 11;
  align-items: center;
  justify-content: center;
}

.nav-menu-icon i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.nav-menu-icon i.fa-xmark {
  display: none;
}

.nav-menu-icon.nav-active i.fa-bars {
  display: none;
}

.nav-menu-icon.nav-active i.fa-xmark {
  display: block;
  color: #00a3ff;
}

.nav-cta-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-container {
    top: 10px;
    padding: 0 12px;
  }

  .nav-bar {
    width: 100%;
    padding: 0 18px;
    height: 58px;
    border-radius: 20px;
    position: relative;
  }

  .nav-bar.nav-scrolled {
    height: 58px;
    border-radius: 20px;
  }

  .nav-menu-icon {
    display: flex;
  }

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

  .nav-links {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(10, 17, 25, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-radius: 0 0 20px 20px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 163, 255, 0.1);
  }

  .nav-bar.nav-scrolled .nav-links {
    background-color: rgba(10, 17, 25, 0.97);
    max-height: 0;
    top: 58px;
    border-radius: 0 0 20px 20px;
  }

  .nav-links.nav-active {
    max-height: 280px;
    padding: 20px 0;
    opacity: 1;
  }

  .nav-bar.nav-scrolled .nav-links.nav-active {
    max-height: 280px;
  }

  .nav-links a {
    margin: 12px 0;
    font-size: 15px;
  }

  .nav-bar.nav-mobile-open {
    border-radius: 20px 20px 0 0;
  }

  .nav-bar.nav-scrolled.nav-mobile-open {
    border-radius: 20px 20px 0 0;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 8px;
  }

  .nav-cta-mobile .nav-btn {
    padding: 11px 28px;
    font-size: 14px;
  }

  .nav-logo-image {
    height: 28px;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    top: 8px;
    padding: 0 8px;
  }

  .nav-bar {
    height: 52px;
    padding: 0 14px;
    border-radius: 18px;
  }

  .nav-bar.nav-scrolled {
    height: 52px;
    border-radius: 18px;
  }

  .nav-links {
    top: 52px;
    border-radius: 0 0 18px 18px;
  }

  .nav-bar.nav-scrolled .nav-links {
    top: 52px;
    border-radius: 0 0 18px 18px;
  }

  .nav-links a {
    font-size: 14px;
    margin: 10px 0;
  }

  .nav-logo-image {
    height: 24px;
  }

  .nav-bar.nav-mobile-open,
  .nav-bar.nav-scrolled.nav-mobile-open {
    border-radius: 18px 18px 0 0;
  }
}

.hero-section {
  min-height: 100vh;
  /* background: linear-gradient(180deg, #0a1119 0%, #0f1922 50%, #1a1247 100%); */
  color: #fff;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-title {
  font-family: "Figtree", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #00a3ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Livvic", sans-serif;
  border: none;
}

.hero-btn-primary {
  background: #00a3ff;
  color: #fff;
}

.hero-btn-primary:hover {
  background: #0088d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 163, 255, 0.3);
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-trial-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  height: 500px;
  max-width: 800px;
  margin: 0 auto 100px;
  background-image: linear-gradient(
      to right,
      rgba(207, 207, 207, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(207, 207, 207, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 400px;
  height: 250px;
  background: linear-gradient(135deg, #1a2332 0%, #0f1922 100%);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transform: rotate(-15deg);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.hero-card-chip {
  width: 50px;
  height: 40px;
  margin-bottom: 20px;
  background: url(../images/gold-chip.svg) no-repeat center;
  background-size: contain;
}

.hero-card-logo {
  position: absolute;
  top: 30px;
  right: 30px;
}

.hero-card-logo-shape {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-logo-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card-number {
  position: absolute;
  bottom: 70px;
  left: 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Courier New", monospace;
}

.hero-card-badges {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
}

.hero-card-badge {
  width: 45px;
  height: 30px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.hero-card-badge img {
  width: 100%;
  height: auto;
}

.hero-notification {
  position: absolute;
  background: rgba(15, 25, 34, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 163, 255, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.hero-notification-1 {
  top: 80px;
  left: 100px;
}

.hero-notification-2 {
  top: 280px;
  left: 50px;
}

.hero-notification-3 {
  top: 100px;
  right: 150px;
}

.hero-notification-icon {
  color: #22c55e;
  font-size: 20px;
}

.hero-notification-icons {
  display: flex;
  gap: 8px;
  font-size: 18px;
}

.hero-notification-icons i:first-child {
  color: #fff;
}

.hero-notification-icons i:last-child {
  color: #00a3ff;
}

.hero-notification-content {
  flex: 1;
}

.hero-notification-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.hero-notification-amount {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.hero-security-badge {
  position: absolute;
  bottom: 100px;
  right: 100px;
  background: rgba(15, 25, 34, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #22c55e;
}

.hero-integrations {
  text-align: center;
  margin-bottom: 80px;
}

.hero-integrations-title {
  font-size: 11px;
  color: #00a3ff;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-integrations-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-integration-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-integration-logo:hover {
  transform: scale(1.1);
}

.hero-integration-logo img {
  height: 100%;
  width: 64px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-card {
    width: 350px;
    height: 220px;
  }

  .hero-notification-1 {
    left: 50px;
  }

  .hero-notification-3 {
    right: 50px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-card {
    width: 300px;
    height: 190px;
    padding: 20px;
  }

  .hero-notification {
    min-width: 180px;
    padding: 12px 16px;
  }

  .hero-notification-1 {
    top: 50px;
    left: 20px;
  }

  .hero-notification-2 {
    top: 250px;
    left: 20px;
  }

  .hero-notification-3 {
    top: 50px;
    right: 20px;
  }

  .hero-security-badge {
    bottom: 50px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

.who-section {
  width: 100%;
  padding: 80px 0;
  /* background: linear-gradient(180deg, #0a1119 0%, #0f1922 100%); */
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-section.who-visible {
  opacity: 1;
  transform: translateY(0);
}

.who-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 32px;
}

.who-header {
  text-align: center;
  margin-bottom: 60px;
}

.who-title {
  font-family: "Figtree", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.title-highlight {
  background: linear-gradient(135deg, #00a3ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  min-height: 500px;
}

.who-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(0, 163, 255, 0.1);
}

.who-card.who-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.who-card:nth-child(1) {
  transition-delay: 0.1s;
}

.who-card:nth-child(2) {
  transition-delay: 0.2s;
}

.who-card:nth-child(3) {
  transition-delay: 0.3s;
}

.who-card:nth-child(4) {
  transition-delay: 0.4s;
}

.who-card.who-expanded {
  flex: 2;
}

.who-card.who-narrow {
  flex: 0.6;
}

.who-card:hover {
  border-color: rgba(0, 163, 255, 0.3);
}

.who-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.who-card:hover .who-image {
  transform: scale(1.05);
}

.who-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(10, 17, 25, 0.5) 70%,
    rgba(10, 17, 25, 0.95) 100%
  );
  transition: background 0.4s ease;
}

.who-card.who-narrow .who-overlay {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(10, 17, 25, 0.7) 90%,
    rgba(10, 17, 25, 0.95) 100%
  );
}

.who-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: #ffffff;
  z-index: 2;
}

.who-card-title {
  font-family: "Figtree", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.who-narrow .who-card-title {
  font-size: 20px;
  margin-bottom: 0;
}

.who-card-description {
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 1;
  max-height: 200px;
  transition: all 0.4s ease;
}

.who-narrow .who-card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.who-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 50px auto;
}

.who-feature {
  text-align: center;
}

.who-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.who-feature-icon-primary {
  background: rgba(0, 163, 255, 0.1);
  color: #00a3ff;
}

.who-feature-icon-accent1 {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.who-feature-icon-accent2 {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.who-feature-title {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.who-feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1200px) {
  .who-content {
    padding: 24px;
  }

  .who-card-title {
    font-size: 20px;
  }

  .who-narrow .who-card-title {
    font-size: 18px;
  }

  .who-stats-container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .who-section {
    padding: 60px 0;
  }

  .who-container {
    padding: 0 24px;
  }

  .who-title {
    font-size: 32px;
  }

  .who-grid {
    flex-direction: column;
  }

  .who-card {
    height: 350px;
  }

  .who-card.who-expanded {
    flex: none;
  }

  .who-card.who-narrow {
    flex: none;
    height: 250px;
  }

  .who-content {
    padding: 20px;
  }

  .who-card-title {
    font-size: 22px;
  }

  .who-narrow .who-card-title {
    font-size: 20px;
  }

  .who-card-description {
    font-size: 13px;
  }

  .who-narrow .who-card-description {
    opacity: 1;
    max-height: none;
  }

  .who-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .who-title {
    font-size: 28px;
  }

  .who-card {
    height: 300px;
  }

  .who-card.who-narrow {
    height: 220px;
  }
}

.prod-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    /* background: linear-gradient(180deg, #0f1922 0%, #0a1119 100%); */
    overflow: hidden;
}

.prod-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.prod-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #00a3ff, #22c55e);
    top: 60%;
    left: 10%;
    animation: prod-float3 25s ease-in-out infinite;
}

.prod-shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #22c55e, #00a3ff);
    top: 20%;
    right: 15%;
    animation: prod-float4 18s ease-in-out infinite;
}

@keyframes prod-float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(60px, -30px);
    }
}

@keyframes prod-float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 40px);
    }
}

.prod-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.prod-header {
    text-align: center;
    margin-bottom: 60px;
}

.prod-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.prod-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.prod-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prod-card {
    perspective: 1000px;
    height: 400px;
}

.prod-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.prod-card:hover .prod-card-inner {
    transform: rotateY(180deg);
}

.prod-card-front,
.prod-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.prod-card-front {
    background: rgba(15, 25, 34, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 255, 0.1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.prod-card:hover .prod-card-front {
    border-color: rgba(0, 163, 255, 0.3);
}

.prod-card-back {
    background: rgba(10, 17, 25, 0.95);
    transform: rotateY(180deg);
    position: relative;
}

.prod-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.prod-back-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 17, 25, 0.7) 0%,
        rgba(10, 17, 25, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-back-title {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.prod-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 163, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #00a3ff;
    font-size: 24px;
}

.prod-icon-accent1 {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.prod-icon-accent2 {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.prod-card-title {
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.prod-card-description {
    font-family: 'Livvic', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.prod-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.prod-feature-list li {
    font-family: 'Livvic', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-feature-list li i {
    color: #22c55e;
    font-size: 10px;
}

.prod-learn-more {
    font-family: 'Livvic', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #00a3ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.prod-learn-more:hover {
    gap: 8px;
}

@media (max-width: 1024px) {
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .prod-section {
        padding: 60px 0;
    }

    .prod-container {
        padding: 0 24px;
    }

    .prod-title {
        font-size: 32px;
    }

    .prod-subtitle {
        font-size: 15px;
    }

    .prod-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prod-card {
        height: 380px;
    }

    .prod-card-front {
        padding: 28px;
    }

    .prod-card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .prod-title {
        font-size: 28px;
    }

    .prod-card {
        height: 360px;
    }

    .prod-card-front {
        padding: 24px;
    }

    .prod-card-title {
        font-size: 18px;
    }

    .prod-card-description {
        font-size: 13px;
    }

    .prod-back-title {
        font-size: 24px;
    }

    .prod-shape-3,
    .prod-shape-4 {
        width: 150px;
        height: 150px;
    }
}
.ben-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 80px 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg, #0a1119 0%, #0f1922 100%); */
}

.ben-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 15px;
    box-sizing: border-box;
}

.ben-header {
    text-align: center;
    margin-bottom: 60px;
}

.ben-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Livvic', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ben-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.ben-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ben-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.ben-image-container {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ben-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ben-decorative-element {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.ben-decorative-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00a3ff 0%, #7c3aed 100%);
    opacity: 0.2;
    top: -20px;
    left: -20px;
    filter: blur(40px);
}

.ben-decorative-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #00a3ff 100%);
    opacity: 0.2;
    bottom: -20px;
    right: -20px;
    filter: blur(40px);
}

.ben-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ben-badge-float i {
    color: #fdb803;
    font-size: 20px;
}

.ben-badge-float span {
    font-family: 'Livvic', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a1119;
}

.ben-accordions {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ben-accordion-item {
    background: rgba(15, 25, 34, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ben-accordion-item:hover {
    border-color: rgba(0, 163, 255, 0.3);
}

.ben-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ben-accordion-title {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.ben-accordion-icon {
    color: #00a3ff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.ben-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.ben-accordion-item.ben-active .ben-accordion-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.ben-accordion-content p {
    font-family: 'Livvic', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.ben-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ben-feature {
    text-align: center;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.ben-feature:hover {
    border-color: rgba(0, 163, 255, 0.3);
    transform: translateY(-5px);
}

.ben-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ben-feature-icon-primary {
    background: rgba(0, 163, 255, 0.1);
    color: #00a3ff;
}

.ben-feature-icon-accent1 {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.ben-feature-icon-accent2 {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.ben-feature-title {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ben-feature-text {
    font-family: 'Livvic', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.ben-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    font-size: 60px;
    color: #00a3ff;
}

.ben-shape-1 {
    top: 15%;
    left: 10%;
    animation-name: ben-floatAround1;
}

.ben-shape-2 {
    bottom: 20%;
    right: 15%;
    animation-name: ben-floatAround2;
    color: #22c55e;
}

.ben-shape-3 {
    top: 60%;
    left: 20%;
    animation-name: ben-floatAround3;
    color: #7c3aed;
}

@keyframes ben-floatAround1 {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(20px, 80px) rotate(180deg); }
    75% { transform: translate(-30px, 30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes ben-floatAround2 {
    0% { transform: translate(0, 0) rotate(0); }
    33% { transform: translate(-40px, -40px) rotate(120deg); }
    66% { transform: translate(40px, -20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes ben-floatAround3 {
    0% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(60px, -30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.ben-visible .ben-image-container {
    opacity: 1;
    transform: translateX(0);
}

.ben-visible .ben-accordions {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .ben-title {
        font-size: 36px;
    }

    .ben-content {
        gap: 40px;
    }

    .ben-features {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ben-section {
        padding: 60px 1.5rem;
    }

    .ben-title {
        font-size: 32px;
    }

    .ben-subtitle {
        font-size: 15px;
    }

    .ben-content {
        flex-direction: column;
        gap: 40px;
    }

    .ben-image-container {
        transform: translateY(-50px);
    }

    .ben-accordions {
        transform: translateY(50px);
    }

    .ben-visible .ben-image-container {
        transform: translateY(0);
    }

    .ben-visible .ben-accordions {
        transform: translateY(0);
    }

    .ben-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ben-accordion-title {
        font-size: 16px;
    }

    .ben-accordion-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ben-title {
        font-size: 28px;
    }

    .ben-accordion-header {
        padding: 16px 20px;
    }

    .ben-accordion-title {
        font-size: 15px;
    }

    .ben-badge-float {
        padding: 10px 16px;
    }

    .ben-badge-float span {
        font-size: 12px;
    }

    .ben-feature {
        padding: 24px 20px;
    }
}
.integ-section {
    position: relative;
    padding: 80px 2rem;
}

.integ-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.integ-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.integ-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: integFloat 20s infinite ease-in-out;
}

.integ-shape-1 {
    width: 400px;
    height: 400px;
    background: #00a3ff;
    left: -100px;
    top: 10%;
    animation-delay: 0s;
}

.integ-shape-2 {
    width: 300px;
    height: 300px;
    background: #22c55e;
    right: -50px;
    top: 20%;
    animation-delay: -5s;
}

@keyframes integFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, 50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 25px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.integ-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.integ-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.integ-header-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.integ-header-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.integ-animation {
    width: 90vmin;
    height: 90vmin;
    max-width: 500px;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.outer-ring {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    position: absolute;
}

.rotating-container {
    position: absolute;
    width: 80%;
    height: 80%;
    animation: integRotate 60s linear infinite;
}

@keyframes integRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.center-logo {
    width: 30%;
    height: 30%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 48px;
    z-index: 3;
    position: relative;
}

.center-logo img {
    width: auto;
    height: 32px;
    object-fit: contain;
}

.brand-logo {
    width: 16%;
    height: 16%;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 8px;
}

.brand-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.brand-logo-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-logo-2 {
    top: 14.65%;
    right: 14.65%;
    transform: translate(50%, -50%);
}

.brand-logo-3 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.brand-logo-4 {
    bottom: 14.65%;
    right: 14.65%;
    transform: translate(50%, 50%);
}

.brand-logo-5 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.brand-logo-6 {
    bottom: 14.65%;
    left: 14.65%;
    transform: translate(-50%, 50%);
}

.brand-logo-7 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.brand-logo-8 {
    top: 14.65%;
    left: 14.65%;
    transform: translate(-50%, -50%);
}

.integ-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.integ-apps {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.integ-apps.visible {
    opacity: 1;
    transform: translateX(0);
}

.integ-apps-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.integ-apps-content {
    flex: 1;
}

.integ-apps-title {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.integ-apps-content-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.integ-apps-content-text p {
    font-family: 'Livvic', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.integ-btn {
    font-family: 'Livvic', sans-serif;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.integ-btn-primary {
    background: #00a3ff;
    color: #fff;
}

.integ-btn-primary:hover {
    background: #0088d9;
    transform: translateY(-2px);
}

.integ-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.integ-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.integ-api {
    display: flex;
    align-items: stretch;
    gap: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
    margin: 20px 0;
    background: rgba(15, 25, 34, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 163, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.integ-api.visible {
    opacity: 1;
    transform: translateX(0);
}

.integ-api-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.integ-api-content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.integ-api-content > p {
    font-family: 'Livvic', sans-serif;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.integ-api-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.integ-api-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.integ-api-icon {
    font-size: 24px;
    min-width: 60px;
    height: 60px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.integ-api-feature h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.integ-api-feature p {
    font-family: 'Livvic', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.integ-api-cta {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.integ-api-code {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.integ-code-header {
    background: #252526;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
}

.integ-code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.integ-code-header span:nth-child(1) {
    background-color: #ff5f56;
}

.integ-code-header span:nth-child(2) {
    background-color: #ffbd2e;
}

.integ-code-header span:nth-child(3) {
    background-color: #27c93f;
}

.integ-code-header div {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.integ-code-block {
    background: #1e1e1e;
    padding: 16px 20px;
    overflow-x: auto;
    flex-grow: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #d4d4d4;
}

.integ-code-block code {
    display: block;
    white-space: pre;
    tab-size: 2;
    font-family: 'Consolas', 'Monaco', 'Courier Prime', monospace;
}

.integ-code-block .comment {
    color: #6a9955;
    font-style: italic;
}

.integ-code-block .string {
    color: #ce9178;
}

.integ-code-block .property {
    color: #9cdcfe;
}

.integ-code-block .method {
    color: #dcdcaa;
}

.integ-partners {
    margin-top: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    transition-delay: 0.4s;
}

.integ-partners.visible {
    opacity: 1;
    transform: translateY(0);
}

.integ-partners-header {
    margin-bottom: 40px;
}

.integ-partners-title {
    font-family: 'Figtree', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    max-width: 600px;
}

.integ-partners-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 650px;
}

.integ-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 24px;
    align-items: center;
}

.integ-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: all 0.3s ease;
}

.integ-partner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
}

@media (max-width: 1024px) {
    .integ-header-title {
        font-size: 36px;
    }

    .integ-api {
        flex-direction: column;
    }

    .integ-api-features {
        grid-template-columns: 1fr;
    }

    .integ-partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 20px;
    }
}

@media (max-width: 768px) {
    .integ-section {
        padding: 60px 1.5rem;
    }

    .integ-header-title {
        font-size: 32px;
    }

    .integ-header-subtitle {
        font-size: 15px;
    }

    .integ-apps {
        flex-direction: column;
    }

    .integ-apps-image {
        max-width: 100%;
    }

    .integ-apps-content {
        text-align: center;
    }

    .integ-api-content {
        padding: 40px 30px;
    }

    .integ-partners-title {
        font-size: 28px;
    }

    .integ-partners-subtitle {
        font-size: 14px;
    }

    .integ-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }

    .integ-partner {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .integ-section {
        padding: 50px 1rem;
    }

    .integ-header {
        margin-bottom: 40px;
    }

    .integ-header-title {
        font-size: 28px;
    }

    .integ-animation {
        width: 90vmin;
        height: 90vmin;
        max-width: 280px;
        max-height: 280px;
        margin: 0 auto 30px auto;
    }

    .center-logo {
        width: 36%;
        height: 36%;
        font-size: 32px;
    }

    .brand-logo {
        width: 22%;
        height: 22%;
    }

    .brand-logo img {
        width: 70%;
        height: 70%;
    }

    .integ-shape-1 {
        width: 200px;
        height: 200px;
        left: -80px;
    }

    .integ-shape-2 {
        width: 180px;
        height: 180px;
        right: -60px;
    }

    .integ-content {
        gap: 50px;
    }

    .integ-apps-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .integ-api {
        margin: 10px 0;
    }

    .integ-api-content {
        padding: 30px 20px;
    }

    .integ-api-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .integ-api-features {
        gap: 20px;
        margin-bottom: 20px;
    }

    .integ-api-feature {
        gap: 12px;
    }

    .integ-api-icon {
        font-size: 18px;
        min-width: 45px;
        height: 45px;
        border-radius: 8px;
    }

    .integ-api-feature h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .integ-api-feature p {
        font-size: 13px;
    }

    .integ-api-cta {
        flex-direction: column;
    }

    .integ-btn {
        width: 100%;
        text-align: center;
    }

    .integ-code-header {
        padding: 6px 12px;
    }

    .integ-code-header span {
        width: 10px;
        height: 10px;
    }

    .integ-code-block {
        padding: 12px 15px;
        font-size: 12px;
    }

    .integ-partners {
        margin-top: 60px;
    }

    .integ-partners-title {
        font-size: 24px;
    }

    .integ-partners-subtitle {
        font-size: 13px;
    }

    .integ-partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
    }

    .integ-partner {
        height: 40px;
    }
}
.test-section {
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.test-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.test-header {
    text-align: center;
    margin-bottom: 60px;
}

.test-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.test-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.test-grid.test-visible {
    opacity: 1;
    transform: translateY(0);
}

.test-left {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
}

.test-left .test-item:first-child {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.test-right {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.test-item {
    display: flex;
    flex-direction: column;
}

.test-quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
}

.test-right .test-quote-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}

.test-quote-icon i {
    font-size: 40px;
    color: #00a3ff;
}

.test-right .test-quote-icon i {
    font-size: 72px;
}

.test-quote {
    font-family: 'Livvic', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    flex-grow: 1;
}

.test-right .test-quote {
    font-size: 22px;
}

.test-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.test-author-info {
    flex: 1;
}

.test-author-name {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.test-right .test-author-name {
    font-size: 20px;
}

.test-author-position {
    font-family: 'Livvic', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.test-right .test-author-position {
    font-size: 15px;
}

.test-company-logo {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.test-right .test-company-logo {
    height: 60px;
}

.test-company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .test-title {
        font-size: 36px;
    }

    .test-left {
        padding-right: 30px;
    }

    .test-right {
        padding-left: 30px;
    }

    .test-left .test-item:first-child {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .test-section {
        padding: 60px 1.5rem;
    }

    .test-title {
        font-size: 32px;
    }

    .test-subtitle {
        font-size: 15px;
    }

    .test-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .test-left {
        padding-right: 0;
    }

    .test-left .test-item:first-child {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .test-left .test-item:last-child {
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .test-right {
        padding-left: 0;
        border-left: none;
    }

    .test-right .test-item {
        padding-bottom: 0;
        border-bottom: none;
    }

    .test-right .test-quote-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
}

.test-right .test-quote-icon i {
    font-size: 40px;
}

    .test-quote {
        font-size: 14px;
    }

    .test-right .test-quote {
        font-size: 14px;
    }

    .test-author {
        gap: 16px;
    }

    .test-right .test-author-name {
        font-size: 18px;
    }

    .test-right .test-author-position {
        font-size: 13px;
    }

    .test-company-logo {
        width: 100px;
        height: 45px;
    }

    .test-right .test-company-logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .test-section {
        padding: 50px 1rem;
    }

    .test-title {
        font-size: 28px;
    }

    .test-quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .test-quote-icon i {
        font-size: 16px;
    }

    .test-quote {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .test-author-name {
        font-size: 16px;
    }

    .test-author-position {
        font-size: 12px;
    }

    .test-company-logo {
        width: 90px;
        height: 40px;
    }

    .test-left .test-item:first-child {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .test-left .test-item:last-child {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
.faq-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    padding: 0 32px;
}

.faq-header {
    position: sticky;
    top: 0px;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-header.faq-visible {
    opacity: 1;
    transform: translateX(0);
}

.faq-title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.faq-visible {
    opacity: 1;
    transform: translateX(0);
}

.faq-item:hover {
    background: rgba(0, 163, 255, 0.05);
    border-color: rgba(0, 163, 255, 0.2);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-family: 'Livvic', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 163, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 255, 0.2);
}

.faq-item:hover .faq-icon {
    background: rgba(0, 163, 255, 0.2);
    border-color: #00a3ff;
}

.faq-item.active .faq-icon {
    background: #00a3ff;
    border-color: #00a3ff;
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: #00a3ff;
    transition: stroke 0.3s ease;
}

.faq-item.active .faq-icon svg {
    stroke: #0a1119;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 28px 28px;
}

.faq-answer p {
    font-family: 'Livvic', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-header {
        position: static;
    }

    .faq-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 1rem;
    }

    .faq-container {
        padding: 0 24px;
    }

    .faq-title {
        font-size: 28px;
    }

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

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

    .faq-question-wrapper {
        padding: 20px 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 22px 22px;
    }

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

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

    .faq-icon svg {
        width: 14px;
        height: 14px;
    }

    .faq-shape img {
        width: 40px;
        height: 40px;
    }
}
.cont-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cont-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cont-form-container {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg,
            rgba(0, 163, 255, .7),
      
      rgba(124, 58, 237, .6)),
        #111;
    background-blend-mode: overlay;
    color: white;
    z-index: 1500;
    padding: 25px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.cont-form-container.active {
    right: 0;
}

.cont-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cont-close-btn:hover {
    transform: rotate(90deg);
    color: #00a3ff;
}

.cont-logo {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.cont-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cont-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #00a3ff;
}

.cont-form-group {
    margin-bottom: 25px;
    position: relative;
}

.cont-form-control {
    font-family: Inter, sans-serif;
    width: 100%;
    padding: 12px 15px;
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cont-form-control:focus {
    border-color: #00a3ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.cont-form-label {
    font-family: Inter, sans-serif;
    position: absolute;
    left: 15px;
    top: 12px;
    color: #aaa;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
}

.cont-form-control:focus~.cont-form-label,
.cont-form-control:not(:placeholder-shown)~.cont-form-label {
    top: -20px;
    left: 5px;
    font-size: 14px;
    color: #00a3ff;
}

.cont-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #00a3ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cont-submit-btn:hover {
    transform: translateY(-2px);
}

.cont-contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #3d3d3d;
}

.cont-info-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00a3ff;
}

.cont-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cont-info-icon {
    width: 40px;
    height: 40px;
    background-color: #252525;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #00a3ff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cont-info-item:hover .cont-info-icon {
    background-color: #00a3ff;
    color: white;
    transform: scale(1.1);
}

.cont-info-text {
    font-family: Inter, sans-serif;
    flex: 1;
}

.cont-info-text a {
    font-family: Inter, sans-serif;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cont-info-text a:hover {
    color: #00a3ff;
}

.cont-form-container .social-contact-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.2rem;
    border-bottom: 1px solid gray;
    margin-bottom: 1rem;
}

.cont-form-container .social-contact-options button {
    padding: 0.5rem 0.5rem; 
    color:white; 
    border:none; 
    border-radius:5px; 
    cursor:pointer;
    font-size: 0.75rem;
}

.cont-form-container .social-contact-options button.telegram {
    background:#0088cc;
}

.cont-form-container .social-contact-options button.whatsapp {
    background:#25d366;
}

@keyframes contact-float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.2);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes contact-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes contact-bounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@media (max-width: 500px) {
    .cont-form-container {
        width: 300px;
        padding: 20px 15px;
    }
    
    .cont-close-btn {
        top: 15px;
        right: 15px;
        font-size: 20px;
    }
    
    .cont-logo {
        margin-bottom: 20px;
    }
    
    .cont-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .cont-form-group {
        margin-bottom: 18px;
    }
    
    .cont-form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .cont-form-label {
        font-size: 13px;
        left: 12px;
        top: 10px;
    }
    
    .cont-form-control:focus~.cont-form-label,
    .cont-form-control:not(:placeholder-shown)~.cont-form-label {
        top: -18px;
        left: 3px;
        font-size: 12px;
    }
    
    .cont-submit-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .cont-contact-info {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .cont-info-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .cont-info-item {
        margin-bottom: 12px;
    }
    
    .cont-info-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        font-size: 14px;
    }
    
    .cont-info-text {
        font-size: 13px;
    }
    
    .cont-shape-1, .cont-shape-2, .cont-shape-3 {
        transform: scale(0.8);
    }
    
    .cont-shape img {
        width: 24px;
        height: 24px;
    }
}

/* Additional breakpoint for very small screens */
@media (max-width: 350px) {
    .cont-form-container {
        padding: 15px 12px;
    }
    
    .cont-close-btn {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
    
    .cont-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .cont-form-group {
        margin-bottom: 15px;
    }
    
    .cont-form-control {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .cont-form-label {
        font-size: 12px;
        left: 10px;
        top: 8px;
    }
    
    .cont-form-control:focus~.cont-form-label,
    .cont-form-control:not(:placeholder-shown)~.cont-form-label {
        top: -16px;
        font-size: 11px;
    }
    
    .cont-submit-btn {
        padding: 8px;
        font-size: 13px;
    }
    
    .cont-info-title {
        font-size: 15px;
    }
    
    .cont-info-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .cont-info-text {
        font-size: 12px;
    }
}

.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
}

.footer-cta {
  text-align: center;
  margin-bottom: 60px;
}

.footer-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.footer-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #808080;
  margin-bottom: 100px;
  line-height: 1.2;
}

.footer-cta p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  background: #00a3ff;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
}

.footer-cta-button .fa-solid {
  margin-left: 10px;
}

/* New merchant account section */
.footer-merchant-info {
  max-width: 1200px;
  text-align: center;
  margin: 50px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-merchant-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00a3ff;
}

.footer-merchant-info p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cccccc;
}

.footer-merchant-info a {
  color: #00a3ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-merchant-info a:hover {
  color: #00a3ff;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00a3ff;
  transform: translateY(-2px);
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 40px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #00a3ff;
  transform: translateY(-3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
}

.footer-contact,
.footer-compliance {
  text-align: center;
}

.footer-contact h5,
.footer-compliance h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00a3ff;
}

.footer-contact p,
.footer-compliance p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #00a3ff;
}

.pci-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pci-badge span img {
  width: 240px;
  height: auto;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #808080;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-cta h2 {
    font-size: 36px;
  }

  .footer-cta h3 {
    font-size: 36px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-merchant-info {
    margin: 30px 0;
    padding: 100px 20px;
  }

  .footer-merchant-info h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta h3 {
    font-size: 28px;
  }

  .footer-cta p {
    font-size: 16px;
  }

  .footer-cta-button {
    width: fit-content;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-merchant-info {
    padding: 15px;
  }

  .footer-merchant-info h4 {
    font-size: 1.1rem;
  }

  .footer-merchant-info p {
    font-size: 14px;
  }
}

