@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Rubik:wght@400;700&display=swap');

.tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: auto;
  min-width: 220px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1000;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #1A1A1A transparent transparent transparent;
}

.tooltip::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 100%;
  left: 0;
  z-index: 999;
}

.tooltip-active .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.copy-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.copy-button:hover {
  opacity: 1;
}

.copy-button img {
  width: 16px;
  height: 16px;
  filter: brightness(1);
}

@keyframes copied {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.copied {
  animation: copied 0.3s ease;
}

:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
}

.container {
  margin: 0 auto;
  padding: 0 2%;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}

button:hover {
  border-color: #646cff;
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.app {
  min-height: 100vh;
  background-color: #000000;
  color: white;
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

.main-content {
  padding-top: 0; 
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.header-scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header.menu-open {
  background-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  -moz-backdrop-filter: none;
  -o-backdrop-filter: none;
  backdrop-filter: none;
}

body.mobile-menu-open {
  overflow: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: none;
  pointer-events: none;
  height: 100%;
}

body.mobile-menu-open .mobile-menu,
body.mobile-menu-open .header {
  pointer-events: auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

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

.logo {
  height: 35px;
  width: auto;
  z-index: 1001;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background-image: linear-gradient(180deg, #ffffff, #8f8f8f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-image 0.3s ease;
  position: relative;
}

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

.cta-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.connect-button {
  background-color: #ef5d09;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 9px;
  padding: 8px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-button:hover {
  transform: translateY(-1px);
  box-shadow: 0px 0px 20px rgba(239, 103, 9, 0.5);
  background-color: #f06200;
  color: #FFFFFF;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-button span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-button.active span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.30);
  -webkit-backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(20px);
  -o-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  margin-top: 74px;
}

.mobile-nav .nav-link {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
}

.hero-wrapper {
  width: 100%;
  padding: 1.5vh 2% 2% 2%;
  box-sizing: border-box;
  margin-top: 60px;
}

.hero-section {
  width: 100%;
  height: var(--vh, 88vh);
  position: relative;
  border-radius: 30px;
  border: 1.5px solid #202020;
  box-sizing: border-box;
  overflow: hidden;
  will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  display: flex;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1;
  animation: fadeOut 0.7s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hero-left-side {
  flex: 1;
  background-color: #090909;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right-side {
  flex: 1;
  background-image: url('./images/hero_background_image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 0 10%;
  box-sizing: border-box;
  z-index: 2;
}

.hero-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.hero-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  justify-content: flex-start;
}

.try-button {
  background-color: #FFFFFF;
  color: #000000;
  border: none;
  border-radius: 15px;
  padding: 10px 15px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.try-button-orange {
  background-color: #ff6200;
  color: #FFFFFF;
}

.try-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.55);
  color: #000000;
}

.try-button-orange:hover {
  box-shadow: 0px 0px 30px rgba(255, 106, 0, 0.55);
  color: #FFFFFF;
}

.learn-more-link {
  color: #CCCCCC;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0;
}

.learn-more-link:hover {
  color: white;
}

@media (max-width: 1300px) {
  .hero-section {
    height: var(--vh, 88vh);
    display: block;
    background-image: url('./images/hero_background_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-left-side {
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
  
  .hero-right-side {
    display: none;
  }
  
  .hero-content {
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    align-items: center;
    text-align: center;
    padding: 0 2%;
  }
  
  .hero-title {
    font-weight: 800;
    font-size: 62px;
    text-align: center;
  }
  
  .hero-description {
    font-size: 18px;
    text-align: center;
    max-width: 80%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .try-button {
    padding: 12px 24px;
    font-size: 20px;
  }
  
  .hero-content {
    gap: 16px;
  }
}

@media (max-width: 945px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .connect-button {
    font-size: 14px;
    padding: 6px 16px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .try-button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: var(--vh, 88vh);
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .try-button {
    font-size: 18px;
    padding: 10px;
    width: 90%;
  }
  
  .connect-button {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.devices-section {
  padding: 30px 0 60px 0;
  background-color: #000000;
  text-align: center;
}

.devices-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.devices-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #CCCCCC;
  margin: 0 auto 40px;
  max-width: 800px;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  color: #FFFFFF;
}

.device-item:hover {
  transform: translateY(-10px);
  opacity: 0.8;
}

.device-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-item:hover .device-icon {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.device-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.device-item:hover .device-icon img {
  transform: scale(1.1);
}

.device-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: #FFFFFF;
}

@media (max-width: 945px) {
  .devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 700px;
  }
  
  .devices-title {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .devices-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  
  .devices-title {
    font-size: 36px;
  }
  
  .devices-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .devices-grid {
    gap: 20px;
    max-width: 500px;
  }
  
  .device-icon {
    width: 70px;
    height: 70px;
  }
  
  .device-icon img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .devices-title {
    font-size: 32px;
  }
  
  .devices-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .devices-grid {
    gap: 15px;
    padding: 0 15px;
  }
  
  .device-icon {
    width: 60px;
    height: 60px;
  }
  
  .device-icon img {
    width: 30px;
    height: 30px;
  }
  
  .device-name {
    font-size: 12px;
    margin-top: 8px;
  }
} 

.steps-section {
  padding: 30px 0 60px 0;
  background-color: #000000;
  text-align: center;
  overflow: hidden;
}

.steps-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
  overflow: visible;
}

.step-item {
  background: linear-gradient(145deg, #060606, #101010);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #242424;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.step-item > * {
  position: relative;
  z-index: 1;
}

.step-item.visible {
  animation-play-state: running;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
  }
}

.step-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: #333333;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0E0E0E;
  border: 1px solid #a1a1a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  background-color: #ff660e;
  border-color: #FF7D20;
}

.step-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 15px 0;
  min-height: 30px;
  align-self: flex-start;
  width: 100%;
  text-align: left;
}

.step-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #CCCCCC;
  margin: 0 0 20px 0;
  flex-grow: 1;
  text-align: left;
  width: 100%;
}

.step-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #EF6709;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  align-self: flex-start;
}

.step-link:hover {
  color: #FF7D20;
}

.step-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #EF6709;
  transition: width 0.3s ease;
}

.step-link:hover::after {
  width: 100%;
  background-color: #FF7D20;
}

@media (max-width: 945px) {
  .steps-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  
  .steps-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .step-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .step-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .steps-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .step-item {
    padding: 20px;
    align-items: center;
  }
  
  .step-title, .step-description {
    text-align: center;
  }
  
  .step-link {
    align-self: center;
  }
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.features-section {
  padding: 30px 0 60px 0;
  background-color: #000000;
  overflow: hidden;
  text-align: center;
}

.features-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
  overflow: visible;
}

.feature-card {
  background: linear-gradient(145deg, #060606, #101010);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #242424;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: none;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:last-child {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px;
}

.feature-card:last-child .feature-icon {
  margin-right: 30px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-card.visible {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
  }
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: #333333;
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #242424;
  background-color: rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: #333333;
}

.feature-card:last-child .feature-icon img {
  width: 120px;
  height: 120px;
}

.feature-card-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 12px;
}

.feature-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #CCCCCC;
  flex-grow: 1;
  margin: 0;
}

.feature-card:last-child .feature-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 945px) {
  .features-title {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon img {
    width: 90px;
    height: 90px;
  }
  
  .feature-card:last-child .feature-icon img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 640px) {
  .features-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card:last-child {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  
  .feature-card:last-child .feature-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .feature-icon img {
    width: 120px;
    height: 120px;
  }
  
  .feature-card:last-child .feature-icon img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .feature-icon img {
    width: 260px;
    height: 260px;
  }
  
  .feature-card:last-child .feature-icon {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .feature-card:last-child .feature-icon img {
    width: 260px;
    height: 260px;
  }
  
  .feature-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .feature-description {
    font-size: 14px;
    text-align: left;
  }
} 

.pricing-section {
  padding: 30px 0 60px 0;
  background-color: #000000;
  text-align: center;
}

.pricing-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.pricing-description {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #CCCCCC;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
}

.pricing-post {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #CCCCCC;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

.pricing-card {
  background: linear-gradient(145deg, #060606, #101010);
  border-radius: 20px;
  padding: 20px;
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #242424;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #333333;
}

.pricing-label {
  background: linear-gradient(180deg, #3b3b3b49 0%, #2c2c2c 100%);
  border-radius: 50px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  margin-bottom: 16px;
}

.pricing-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.pricing-label span {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
}

.pricing-label.white .pricing-label-dot {
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.pricing-label.orange .pricing-label-dot {
  background-color: #EF6709;
  box-shadow: 0 0 10px rgba(239, 103, 9, 0.7);
}

.pricing-label.purple .pricing-label-dot {
  background-color: #A445FF;
  box-shadow: 0 0 15px rgba(164, 69, 255, 0.7);
}

.pricing-price {
  margin-bottom: 3px;
  text-align: center;
}

.pricing-price h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #FFFFFF;
  margin: 0;
}

.pricing-price span {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #CCCCCC;
}

.pricing-yearly {
  margin-bottom: 20px;
  text-align: center;
}

.pricing-yearly span {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #AAAAAA;
}

.pricing-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-dot.orange {
  background-color: #EF6709;
  box-shadow: 0 0 10px rgba(239, 103, 9, 0.7);
}

.feature-dot.purple {
  background-color: #A445FF;
  box-shadow: 0 0 15px rgba(164, 69, 255, 0.7);
}

.pricing-feature span {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #DDDDDD;
}

.pricing-button {
  width: 100%;
  padding: 14px 0;
  border-radius: 12px;
  background-color: rgb(35 35 35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pricing-button:hover {
  background-color: rgba(255, 255, 255, 0.384);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.pricing-button.orange:hover {
  background-color: rgba(239, 105, 9, 0.712);
  border-color: rgba(239, 103, 9, 0.4);
  box-shadow: 0 0 15px rgba(239, 103, 9, 0.4);
  color: #FFFFFF;
}

.pricing-button.purple:hover {
  background-color: rgba(174, 87, 255, 0.699);
  border-color: rgba(164, 69, 255, 0.4);
  box-shadow: 0 0 15px rgba(164, 69, 255, 0.4);
  color: #FFFFFF;
}

.pricing-button.white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

@media (max-width: 945px) {
  .pricing-title {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .pricing-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .pricing-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .pricing-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  
  .pricing-title {
    font-size: 36px;
  }
  
  .pricing-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .pricing-card {
    width: 90%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .pricing-title {
    font-size: 32px;
  }
  
  .pricing-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .pricing-card {
    width: 95%;
    padding: 20px;
  }
  
  .pricing-price h3 {
    font-size: 56px;
  }
  
  .pricing-feature span {
    font-size: 14px;
  }
} 

.faq-section {
  padding: 0 0 20px 0;
  background: linear-gradient(180deg, #000000, #242424);
  position: relative;
  overflow: hidden;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.faq-title {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2% 50px;
  position: relative;
  z-index: 1;
}

.faq-item {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: none;
  position: relative;
}

.faq-question h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
  transition: none;
  display: flex;
  align-items: center;
}

.faq-question h3::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  opacity: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background-color: #ffffff;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-left: 21px;
  padding-bottom: 0;
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.faq-item.open .faq-answer {
  margin-bottom: 20px;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

@media (max-width: 945px) {
  .faq-title {
    font-size: 42px;
    margin-bottom: 30px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 40px 0 0 0;
  }
  
  .faq-title {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .faq-container {
    padding: 0 15px 40px;
  }
  
  .faq-question {
    padding: 15px 0;
  }
  
  .faq-question h3 {
    font-size: 16px;
    line-height: 1.4;
    width: 85%;
  }
  
  .faq-question h3::before {
    width: 5px;
    height: 5px;
    margin-right: 10px;
  }
  
  .faq-answer {
    padding-left: 15px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .faq-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .faq-question h3 {
    font-size: 15px;
    width: 82%;
  }
  
  .faq-question h3::before {
    width: 4px;
    height: 4px;
    margin-right: 8px;
  }
} 

.footer-section {
  background-color: #000000;
  padding: 40px 0 30px;
  color: #FFFFFF;
}

.footer-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2%;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 40px;
  width: 100%;
  margin-bottom: 30px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.footer-company > * {
  margin: 12px 0;
}

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

.footer-logo img {
  height: 35px;
  width: auto;
  margin-right: 12px;
}

.footer-logo span {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  white-space: nowrap;
}

.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #CCCCCC;
  margin: 12px 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 0 25px 0;
}

.footer-copyright {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #888888;
  margin: 0;
  text-align: center;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0;
  width: 100%;
}

.footer-payments img {
  height: 22px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-payments img:hover {
  opacity: 1;
}

.footer-links {
  padding-top: 0;
}

.footer-links h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #FFFFFF;
  transition: width 0.3s ease;
}

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

@media (max-width: 945px) {
  .footer-section {
    padding: 50px 0 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 25px;
  }
  
  .footer-company {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 80%;
  }
  
  .footer-payments {
    justify-content: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links h3 {
    white-space: normal;
  }
  
  .footer-links a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 45px 0 35px;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 30px;
  }
  
  .footer-logo img {
    height: 30px;
  }
  
  .footer-logo span {
    font-size: 20px;
  }
  
  .footer-payments {
    gap: 10px;
  }
  
  .footer-payments img {
    height: 18px;
  }
} 

.step-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stepFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-item.step-visible {
  animation: stepFadeIn 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .step-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}