* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.logo h1 {
  font-size: 2.2rem;
  color: #000000;
}

.logo h1 span {
  color: #3b82f6;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navigation a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.navigation a:hover {
  color: #3b82f6;
  background: rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  margin-bottom: 50px;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn.primary {
  background: #93c5fd;
  color: #000000;
}

.btn.secondary {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-placeholder {
  width: 300px;
  height: 300px;
  background: #f1f5f9;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.device-placeholder i {
  font-size: 5rem;
  color: #3b82f6;
}

/* Cards */
.card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3b82f6;
  border-radius: 2px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #000000;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: #f1f5f9;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: #e2e8f0;
}

.stat i {
  color: #3b82f6;
  margin-bottom: 10px;
}

.stat .number {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  background: #f1f5f9;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card i {
  color: #3b82f6;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Contacts */
.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.contact-card {
  text-align: center;
  padding: 25px;
  background: #f1f5f9;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: #e2e8f0;
}

.photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #3b82f6;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,0.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-card p {
  margin: 10px 0;
  color: #000000;
}

.contact-card a {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

/* Pricing */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.pricing-item {
  background: #f1f5f9;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.pricing-item:hover {
  transform: translateY(-10px);
  background: #e2e8f0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
  margin: 15px 0;
}

.features {
  margin-top: 20px;
  text-align: left;
}

.features span {
  display: block;
  margin: 10px 0;
  color: #000000;
  font-size: 0.95rem;
}

.features i {
  color: #10b981;
  margin-right: 8px;
}

/* Websites */
.websites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.website-card {
  background: #f1f5f9;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.website-card:hover {
  transform: translateY(-5px);
  background: #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.website-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3b82f6;
  margin: 0 auto 15px;
}

.website-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.website-card p {
  color: #000000;
  font-size: 0.95rem;
}

/* Address */
.address-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.address-info p {
  margin: 15px 0;
  color: #000000;
}

.map-placeholder {
  text-align: center;
  padding: 30px;
  background: #f1f5f9;
  border-radius: 15px;
  border: 1px dashed rgba(0,0,0,0.1);
}

.map-placeholder i {
  color: #3b82f6;
  margin-bottom: 15px;
}

/* Footer */
footer {
  margin-top: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #3b82f6;
}

.footer-info p {
  color: #000000;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  color: #64748b;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .address-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .navigation ul {
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    grid-template-columns: 1fr;
  }
  
  .websites {
    grid-template-columns: 1fr;
  }
}
