/* Base Styles */
:root {
  --primary: #03a9f4;
  --secondary: #673ab7;
  --accent: #00bcd4;
  --dark: #111111;
  --light: #ffffff;
  --gray: #aaaaaa;
  --dark-gray: #222222;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #ffffff;
  background-color: #050505;
  line-height: 1.6;
}

.site-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* Header Styles */
header {
  background: rgba(17, 17, 17, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-size: 1.8rem;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo h1 span {
  color: var(--accent);
}

.tld {
  font-weight: 400;
  color: var(--gray);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: var(--light);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
}

.hamburger, 
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--light);
  transition: all 0.3s ease;
}

.hamburger {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #050505, #111111);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(3, 169, 244, 0.05) 0%, transparent 50%);
  animation: pulse 15s infinite linear;
}

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

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-svg {
  max-width: 100%;
  height: auto;
}

.badge {
  display: inline-block;
  background: rgba(3, 169, 244, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(3, 169, 244, 0.2);
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-block;
  background: var(--gradient);
  color: var(--light);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(3, 169, 244, 0.3);
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button.large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.text-button {
  display: inline-flex;
  align-items: center;
  color: var(--light);
  font-weight: 500;
}

.text-button:hover {
  color: var(--primary);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: #080808;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #111111;
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Showcase Section */
.showcase {
  padding: 6rem 0;
  background-color: #060606;
}

.tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-headers {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tab-button {
  background: transparent;
  border: none;
  color: var(--gray);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-button.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.panel-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.panel-text {
  flex: 1.5;
}

.panel-visual {
  flex: 1;
}

.panel-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.panel-text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.feature-list {
  list-style-type: none;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Process Section */
.process {
  padding: 6rem 0;
  background-color: #080808;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  bottom: -60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray);
}

/* Action Section */
.action-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #050505, #111111);
  position: relative;
  overflow: hidden;
}

.action-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.05) 0%, transparent 50%);
  animation: pulse 15s infinite linear;
}

.action-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.action-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.action-content p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 3rem;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}

.links-group h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.links-group ul {
  list-style-type: none;
}

.links-group ul li {
  margin-bottom: 0.5rem;
}

.links-group ul li a {
  color: var(--gray);
  font-size: 0.9rem;
}

.links-group ul li a:hover {
  color: var(--light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.legal-notice {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  color: #444;
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .panel-content {
    flex-direction: column;
  }
  
  .panel-text {
    order: 2;
  }
  
  .panel-visual {
    order: 1;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-button {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    padding: 1.5rem;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }
  
  .menu-toggle:checked ~ nav {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .tab-headers {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step::after {
    display: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}
