/* TreeReels - Cyberpunk Soviet Constructivism Style */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Courier+Prime:wght@400;700&display=swap');

:root {
  --primary: #ff073a;
  --secondary: #39ff14;
  --accent: #00d4ff;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --gray: #1a1a1a;
  --gradient: linear-gradient(135deg, #ff073a 0%, #00d4ff 100%);
  --shadow: 0 0 30px rgba(255, 7, 58, 0.3);
}

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

body {
  font-family: 'Courier Prime', monospace;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.nav-links a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--darker);
  flex-direction: column;
  padding: 2rem;
  border-top: 2px solid var(--primary);
}

.mobile-link {
  color: var(--light);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray);
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 2rem 2rem;
  background: linear-gradient(45deg, var(--dark) 0%, var(--gray) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff073a" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 8vw, 6rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-primary {
  background: var(--primary);
  color: var(--light);
  box-shadow: var(--shadow);
}

.cta-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cta-primary:hover, .cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 7, 58, 0.6);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
  clip-path: polygon(0 0, 85% 0%, 100% 100%, 15% 100%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 7, 58, 0.1);
  border: 2px solid var(--primary);
  transform: skew(-5deg);
}

.stat-number {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  text-shadow: 0 0 20px var(--secondary);
}

.stat-label {
  font-size: 1rem;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Research Section */
.research {
  padding: 5rem 0;
  background: var(--darker);
  position: relative;
}

.research h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

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

.research-card {
  background: var(--gray);
  border: 2px solid var(--accent);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

.research-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.research-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: hue-rotate(45deg) saturate(1.5);
}

.research-card h3 {
  font-family: 'Orbitron', monospace;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
}

.services h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.services-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-main {
  background: rgba(255, 7, 58, 0.1);
  padding: 3rem;
  border: 3px solid var(--primary);
  clip-path: polygon(0 0, 95% 0%, 100% 100%, 5% 100%);
}

.service-main h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 2rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.service-cta {
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border: none;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: var(--accent);
  box-shadow: 0 0 30px var(--accent);
}

.service-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  background: var(--gray);
  border: 2px solid var(--accent);
  padding: 1.5rem;
  transform: skew(-3deg);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: skew(0deg) scale(1.05);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.service-card h4 {
  font-family: 'Orbitron', monospace;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--darker);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.metric {
  text-align: center;
  padding: 1.5rem;
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid var(--secondary);
  transform: rotate(-2deg);
}

.metric-value {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--light);
  text-transform: uppercase;
}

.about-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 3px solid var(--primary);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  filter: contrast(1.3) saturate(1.2);
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(45deg, var(--gray) 0%, var(--dark) 100%);
}

.pricing h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--darker);
  border: 3px solid var(--accent);
  padding: 2rem;
  position: relative;
  transform: perspective(800px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: perspective(800px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(255, 7, 58, 0.1);
  transform: perspective(800px) rotateY(0deg) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.price-header h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.price {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  color: var(--light);
  opacity: 0.7;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.price-cta {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--dark);
  border: none;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.price-cta:hover {
  background: var(--secondary);
  box-shadow: 0 0 30px var(--secondary);
}

.pricing-offer {
  text-align: center;
  padding: 2rem;
  background: rgba(57, 255, 20, 0.1);
  border: 2px solid var(--secondary);
  margin-top: 2rem;
}

.offer-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--darker);
}

.testimonials h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

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

.testimonial-card {
  background: var(--gray);
  border: 2px solid var(--accent);
  padding: 2rem;
  position: relative;
  transform: skew(-2deg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: skew(0deg) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--secondary);
  font-family: 'Orbitron', monospace;
}

.testimonial-author span {
  display: block;
  color: var(--light);
  opacity: 0.7;
  margin-top: 0.5rem;
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
}

.faq h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--primary);
  margin-bottom: 1rem;
  background: var(--darker);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 7, 58, 0.1);
}

.faq-question h3 {
  font-family: 'Orbitron', monospace;
  color: var(--secondary);
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--darker);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(57, 255, 20, 0.1);
  border-left: 4px solid var(--secondary);
}

.contact-item strong {
  color: var(--secondary);
  font-family: 'Orbitron', monospace;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--gray);
  padding: 2rem;
  border: 3px solid var(--accent);
  clip-path: polygon(0 0, 95% 0%, 100% 100%, 5% 100%);
}

.contact-form h3 {
  font-family: 'Orbitron', monospace;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: var(--darker);
  border: 2px solid var(--primary);
  color: var(--light);
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--light);
  border: none;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 0 30px var(--secondary);
}

/* Footer */
.footer {
  background: var(--darker);
  border-top: 3px solid var(--primary);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Orbitron', monospace;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links h4 {
  font-family: 'Orbitron', monospace;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: var(--light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--darker);
  border-top: 2px solid var(--primary);
  padding: 1rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup.show {
  display: flex;
}

.popup-content {
  background: var(--dark);
  border: 3px solid var(--primary);
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 10% 100%);
}

.popup-content h3 {
  font-family: 'Orbitron', monospace;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.popup-close {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .services-layout {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
  }
}

section {
    overflow-x: hidden;
}