/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Mono', monospace;
}

:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #000000;
  --text-color: #000000;
  --light-text: #ffffff;
  --dark-text: #000000;
  --background: #f0f2f5;
  --glass-background: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  height: 100vh;
}

/* Background Shapes */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.shape1 {
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: linear-gradient(to right, #e0e0e0, #f5f5f5);
  opacity: 0.7;
}

.shape2 {
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(to left, #e0e0e0, #f5f5f5);
  opacity: 0.7;
}

.shape3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #f0f0f0, transparent);
  opacity: 0.5;
}

/* Glass Pane */
.glass-pane {
  position: relative;
  width: 90%;
  max-width: 1400px;
  height: 90vh;
  margin: 5vh auto;
  background: var(--glass-background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: -0.5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Content Wrapper */
.content-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 0 2rem 2rem;
  scroll-behavior: smooth;
}

.content-wrapper::-webkit-scrollbar {
  width: 8px;
}

.content-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.content-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.content-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
  letter-spacing: -1px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  letter-spacing: -0.5px;
}

.btn.primary {
  background: var(--primary-color);
  color: var(--light-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark-text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary-color);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.image-container {
  width: 100%;
  height: 400px;
  background: url('https://via.placeholder.com/600x400') center/cover;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  flex: 1;
  margin: 0 0.5rem;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-color);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon i {
  font-size: 2rem;
  color: var(--light-text);
}

/* Products Section */
.products {
  padding: 5rem 0;
}

.product-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 300px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  background: url('https://via.placeholder.com/300x200') center/cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--light-text);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.quote::before, .quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
  position: absolute;
}

.quote::before {
  top: -10px;
  left: -10px;
}

.quote::after {
  bottom: -20px;
  right: -10px;
}

.client {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url('https://via.placeholder.com/60x60') center/cover;
  margin-right: 1rem;
  border: 3px solid rgba(0, 0, 0, 0.1);
}

.client-info h4 {
  margin-bottom: 0.2rem;
}

.client-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Team Section */
.team {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: url('https://via.placeholder.com/150x150') center/cover;
  margin: 0 auto 1.5rem;
  border: 5px solid rgba(0, 0, 0, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-content {
  display: flex;
  gap: 3rem;
}

.contact-info, .contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  margin-right: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info .social-links {
  justify-content: flex-start;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Roboto Mono', monospace;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .glass-pane {
      width: 95%;
      height: 95vh;
      margin: 2.5vh auto;
  }
  
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  .about-content, .contact-content {
      flex-direction: column;
  }
  
  .about-image {
      order: -1;
  }
  
  .image-container {
      height: 300px;
      margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  header {
      flex-direction: column;
      padding: 1rem;
  }
  
  .logo {
      margin-bottom: 1rem;
  }
  
  nav ul {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  nav ul li {
      margin: 0.5rem;
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }
  
  .stats {
      flex-direction: column;
      gap: 1rem;
  }
  
  .testimonial-card {
      min-width: 100%;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 2rem;
  }
  
  .footer-links {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .glass-pane {
      width: 98%;
      height: 98vh;
      margin: 1vh auto;
      border-radius: 10px;
  }
  
  .content-wrapper {
      padding: 0 1rem 1rem;
  }
  
  h1 {
      font-size: 1.8rem;
  }
  
  h2 {
      font-size: 1.5rem;
  }
  
  .service-card, .feature, .team-member {
      padding: 1.5rem;
  }
  
  .service-icon, .feature-icon {
      width: 60px;
      height: 60px;
  }
  
  .service-icon i, .feature-icon i {
      font-size: 1.5rem;
  }
  
  .contact-item {
      flex-direction: column;
      text-align: center;
  }
  
  .contact-item i {
      margin-right: 0;
      margin-bottom: 1rem;
  }
  
  .contact-info .social-links {
      justify-content: center;
  }
}