/* Landing Page - Index */
html {
  overflow: auto;
}

/* Layout */
.landing-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000000;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgb(0, 0, 0);
  padding: 16px 0;
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-logo {
  position: absolute;
  left: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.navbar-brand {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: #ffffff;
}

.navbar-actions {
  position: absolute;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-actions .cta-primary,
.navbar-actions .cta-secondary {
  padding: 8px 28px;
  font-size: 16px;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 0;
  height: 75vh;
  /* overflow: hidden; */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 40%, rgba(0, 11, 255, 0.15), transparent);
  /* background: url('/static/img/screenback.png') no-repeat center center; */
  /* background-size: cover; */
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 80px; */
  align-items: center;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
  z-index: 10;
}

.hero-sphere-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.hero-sphere-live {
  position: absolute;
  width: 1000px;
  height: 1200px;
  filter: blur(80px);
}

.hero-sphere-live svg {
  width: 100%;
  height: 100%;
}

.hero-sphere-logo {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sphereLogoFloat 3s ease-in-out infinite;
}

.hero-sphere-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes sphereLogoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: clamp(48px, 2.5vw, 120px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: #ffffff;
}

.hero-title .gradient {
  background: linear-gradient(135deg, #000bff 0%, #4169ff 50%, #00aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 48px;
  max-width: 750px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 250px;
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cta-primary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.cta-primary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Demo Section */
.demo-section {
  padding: 70px 40px;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.plans-section {
  padding: 70px 40px;
  background:#000000;
}

.plans-container {
  max-width: 1800px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.demo-container {
  max-width: 1600px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 20px;
}

.section-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
    font-size: clamp(40px, 3vw, 72px);
    font-weight: 700;
    text-align: right;
    margin: 0 0 40px;
    color: #ffffff;
    letter-spacing: -0.02em;
}





.demo-video-placeholder img {
  width: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

.demo-video-placeholder iframe {
  width: 100%;
  height: 600px;
  max-width: 100%;
  border: none;
  display: block;
}

.demo-description {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 18px;
  font-weight: 600;
  color: #3f6cff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.demo-cta:hover {
  color: #4169ff;
  gap: 14px;
}

.demo-cta i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.demo-cta:hover i {
  transform: translateX(4px);
}

/* Interactive Demo Content */
.demo-title-interactive {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #ffffff;
}

.demo-description-interactive {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.demo-text {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* Screenshots Grid */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 32px;
  margin: 0 0 50px; /*  120px */
}

.screenshot-card {
  overflow: hidden;
  border: 1.4px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  border-radius: 4px;
  cursor: pointer;
}

.screenshot-card:hover {
  transform: translateY(-8px);
}

.screenshot-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.screenshot-image i {
  font-size: 64px;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}

.screenshot-info {
  padding: 20px;
}

.screenshot-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #ffffff;
}

.screenshot-desc {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 70px 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.features-container {
  max-width: 1600px;
  margin: 0 auto;
}

.features-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left side - Floating Icons */
.features-icons-wrapper {
  position: relative;
  min-height: 600px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.features-icons-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  max-width: 100%;
  object-fit: contain;
}

.feature-image-mobile {
  width: 100%;
  height: 600px;
  object-fit: contain;
  border: 1px solid #272727;
  border-radius: 9px;
  display: none;
}

.demo-video-image-mobile {
  width: 100%;
  height: 600px;
  object-fit: contain;
  border: 1px solid #272727;
  border-radius: 9px;
  display: none;
}

@media (max-width: 900px) {
  .features-icons-wrapper #feature-iframe {
    display: none !important;
  }
  
  .feature-image-mobile {
    display: block !important;
    height: 100%;
  }
  
  .demo-video-placeholder #demo-video-iframe {
    display: none !important;
  }
  
  .demo-video-placeholder .demo-video-image-mobile {
    display: block !important;
    height: 100%;
  }
  
  .screenshots-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
  }
  
  .feature-item-title {
    font-size: clamp(22px, 5.5vw, 36px);
  }
  
  .feature-number {
    font-size: clamp(14px, 3.5vw, 18px);
  }
  
  .feature-item-desc {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.6;
  }
}

/* Right side - Feature List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.feature-checkbox {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

.feature-item-active .feature-checkbox {
  background: #ffffff;
  border-color: #ffffff;
  position: relative;
}

.feature-item-active .feature-checkbox::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 2px;
}

.feature-content {
  flex: 1;
}

.feature-item-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  min-width: 30px;
  text-align: right;
}

.feature-item-desc {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 0;
  max-width: 600px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item-active .feature-item-desc {
  display: block;
  opacity: 1;
}

/* Pricing Section */
.pricing-section {
  padding: 70px 40px;
  background: #000000;
}

.pricing-container {
  max-width: 1600px;
  margin: 0 auto;
}

.pricing-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px;
  gap: 4px;
}

.pricing-toggle-btn {
  padding: 8px 24px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-toggle-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pricing-layout {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 48px 60px;
  transition: border-color 0.3s ease;
}

.pricing-layout:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.pricing-vertical-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
}

.pricing-plan {
  position: relative;
}

.plan-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(0, 11, 255, 0.4);
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 12px;
  font-weight: 600;
  color: #4169ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.price-label {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  flex-direction: column;
  gap: 28px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.feature-info {
  flex: 1;
  padding-top: 2px;
}

.feature-info h4 {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.feature-info p {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  gap: 14px;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  gap: 14px;
}

.plan-cta-primary {
  gap: 14px;
}

.plan-cta-primary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  gap: 14px;
}

.plan-cta i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.plan-cta:hover i {
  transform: translateX(4px);
}

/* CTA Section */
.cta-section {
  padding: 70px 40px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 70% 40%, rgba(0, 11, 255, 0.15), transparent);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin: 0 0 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 56px;
  border-radius: 14px;
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  background: #000bff;
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 6px 32px rgba(0, 11, 255, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.cta-button-large:hover {
  background: #0018ff;
  box-shadow: 0 8px 40px rgba(0, 11, 255, 0.6);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1300px) {
  .section-title {
    text-align: center;
  }

  .navbar-container {
    padding: 0 24px;
  }
  
  .navbar-links {
    gap: 24px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-sphere-wrapper {
    min-height: 400px;
    display: none;
  }
  
  .hero-sphere-live {
    width: 400px;
    height: 400px;
  }
  
  .hero-sphere-logo {
    width: 150px;
    height: 150px;
  }
  
  .demo-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-video-placeholder iframe {
    height: 50vw;
    max-height: 600px;
    min-height: 300px;
  }
  
  .features-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .features-icons-wrapper {
    min-height: 200px;
    margin-left: 0px;
    width: 100%;
  }
  
  .features-icons-wrapper iframe {
    height: 50vw;
    max-height: 600px;
    min-height: 200px;
  }
}

@media (max-width: 1300px) {
  .navbar{
    padding: 40px 0;
  }


  .navbar.scrolled {
    padding: 30px 0;
  }
  .navbar-container {
    padding: 0 20px;
  }
  
  .navbar-logo {
    left: 20px;
  }
  
  .navbar-brand {
    font-size: 18px;
  }
  
  .navbar-links {
    display: none;
  }
  
  .navbar-actions {
    right: 20px;
  }
  
  .navbar-actions .cta-primary {
    display: none;
  }
  
  .navbar-actions .cta-secondary {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .hero-section {
    padding: 120px 24px 40px;
    height: auto;
    align-items: flex-start;
    padding-top: max(120px, 15vh);
  }
  
  .hero-container {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    margin-top: 0;
  }
  
  .hero-sphere-wrapper {
    min-height: 300px;
  }
  
  .hero-sphere-live {
    width: 300px;
    height: 300px;
  }
  
  .hero-sphere-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
  }
  
  .cta-section,
  .changelog-section {
    padding: 80px 24px;
  }
}

/* Для экранов с маленькой высотой */
@media (max-width: 900px) and (max-height: 600px) {
  .hero-section {
    padding-top: max(100px, 10vh);
    height: auto;
  }
  
  .hero-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 24px;
  }
  
  .hero-cta {
    gap: 12px;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  
  .icon-box {
    width: 80px;
    height: 80px;
  }
  
  .icon-box i {
    font-size: 32px;
  }
  
  .icon-box-large {
    width: 100px;
    height: 100px;
  }
  
  .icon-box-large i {
    font-size: 40px;
  }
  
  .feature-item-title {
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .feature-number {
    font-size: clamp(14px, 3vw, 18px);
  }
  
  .feature-item-desc {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.6;
    margin-top: 8px;
  }
  
  .floating-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Changelog Section */
.changelog-section {
  padding: 70px 40px;
  background: #000000;
}

.changelog-container {
  max-width: 1600px;
  margin: 0 auto;
}

.changelog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.changelog-card {
  padding: 10px;
  border-radius: 4px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.changelog-card:hover {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.changelog-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.changelog-version {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgb(0 0 0 / 0%);
  border: 1px solid rgb(255 255 255 / 30%);
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.changelog-date {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.changelog-title {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.changelog-link {
  text-align: left;
}

.changelog-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 18px;
  font-weight: 600;
  color: #667abb;
  text-decoration: none;
  transition: all 0.2s ease;
}

.changelog-link a:hover {
  color: #4169ff;
  gap: 14px;
}

.changelog-link a i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.changelog-link a:hover i {
  transform: translateX(4px);
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 40px 40px;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo span {
  font-family: 'Inter', ui-sans-serif, system-ui;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 18px;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal span {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-family: 'Jost', ui-sans-serif, system-ui;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1300px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1300px) {
  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .demo-section {
    padding: 40px 10px;
  }
  .features-section {
    padding: 40px 10px;
  }
  .plans-section {
    padding: 40px 10px;
  }
  .changelog-section {
    padding: 40px 10px;
  }

  .pricing-vertical-divider {
    display: none;
  }

  .pricing-plan {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pricing-plan:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 1300px) {
  .pricing-section {
    padding: 40px 24px;
  }

  .pricing-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pricing-toggle {
    width: 100%;
  }

  .pricing-toggle-btn {
    flex: 1;
  }

  .pricing-layout {
    padding: 32px 24px;
  }

  .pricing-plans {
    gap: 32px;
  }

  .plan-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .price-value {
    font-size: 36px;
  }

  .price-label {
    font-size: 14px;
  }

  .plan-cta {
    width: 100%;
  }

  .feature-icon-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 13px;
  }

  .feature-info h4 {
    font-size: 14px;
  }

  .feature-info p {
    font-size: 12px;
  }

  .plan-features {
    gap: 20px;
    grid-template-columns: 1fr ;
  }

  .changelog-section {
    padding: 40px 24px;
  }
  
  .changelog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 60px 24px 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .footer-legal-links {
    flex-direction: row;
    gap: 12px;
  }
}

