* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #000;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  background: #f3f4f6;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lang-toggle:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.lang-toggle:active {
  transform: scale(0.95);
}

.cta-button {
  background: #4ade80;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #22c55e;
}

/* Hero Section - Centered Layout */
.hero {
  padding: 128px 0 64px;
}

.hero-content-centered {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #374151;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title-large {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle-gray {
  color: #6b7280;
}

.hero-description-large {
  font-size: 24px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero-buttons-centered {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #4ade80;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #22c55e;
}

.btn-secondary {
  background: transparent;
  color: #000;
  border: 2px solid #e5e7eb;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.btn-secondary:hover {
  border-color: #d1d5db;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  background: #4ade80;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon i {
  font-size: 32px;
  color: #000;
}

.service-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Pricing Section - Updated to match services design */
.pricing {
  padding: 80px 0;
  background: #f9fafb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
  background: #4ade80;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(-5deg);
}

.pricing-icon i {
  font-size: 32px;
  color: #000;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #6b7280;
  line-height: 1.6;
}

.pricing-features li i {
  color: #4ade80;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.pricing-price-bottom {
  text-align: center;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.price-currency {
  font-size: 18px;
  color: #6b7280;
  margin-left: 4px;
}

.pricing-button {
  width: 100%;
  background: #4ade80;
  color: #000;
  border: none;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.pricing-button:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
}

.pricing-note p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Portfolio Section - Clean without tags */
.portfolio {
  padding: 80px 0;
}

.portfolio-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 4 / 3;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: #6b7280;
  margin-bottom: 16px;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
}

.about-description {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-passion {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.code-block {
  background: #f3f4f6;
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.code-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}
.dot.yellow {
  background: #eab308;
}
.dot.green {
  background: #22c55e;
}

.code-content {
  background: #000;
  color: #4ade80;
  padding: 24px;
  border-radius: 16px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
}

.code-line {
  margin-bottom: 8px;
}

.indent {
  margin-left: 16px;
}
.indent-2 {
  margin-left: 32px;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: #f9fafb;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  background: #4ade80;
  color: #000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.step-content p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.contact-content {
  max-width: 800px;
}

.contact h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact p {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  background: #4ade80;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #000;
  font-size: 20px;
}

.contact-label {
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-value {
  color: #d1d5db;
}

/* Footer - Centered */
.footer {
  background: #111827;
  color: #fff;
  padding: 48px 0 24px;
}

.footer-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-text-centered p {
  color: #9ca3af;
  margin-bottom: 4px;
}

.footer-links {
  display: none; /*flex*/
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-separator {
  color: #6b7280;
  font-size: 14px;
}

/* Language transition */
[data-cs],
[data-en] {
  transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .header-actions {
    margin-right: -28px;
}

  .logo-img {
    height: 32px;
    margin-left: -32px;
  }

  .hero-title-large {
    font-size: 48px;
  }

  .hero-description-large {
    font-size: 18px;
  }

  .hero-buttons-centered {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-clean {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lang-toggle {
    padding: 6px 10px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .contact h2 {
    font-size: 36px;
  }

  .footer-logo-img {
    height: 32px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title-large {
    font-size: 64px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}