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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

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

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #1a1a1a;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-primary {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #1a1a1a;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.stats {
  background: #f9fafb;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #6b7280;
}

.services {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 8px 0;
  color: #6b7280;
  position: relative;
  padding-left: 24px;
}

.service-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 700;
}

.trust {
  background: #f9fafb;
  padding: 100px 24px;
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.trust-description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

.trust-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.feature-item h4 {
  margin-bottom: 4px;
  color: #1a1a1a;
}

.feature-item p {
  color: #6b7280;
  font-size: 15px;
}

.trust-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.cta {
  padding: 80px 24px;
  background: #1a1a1a;
  color: #ffffff;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #d1d5db;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 60px 24px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column p,
.footer-column a {
  color: #9ca3af;
  font-size: 14px;
  line-height: 2;
  text-decoration: none;
  display: block;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #374151;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.page-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: #f9fafb;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio {
  padding: 80px 24px;
}

.portfolio-grid {
  display: grid;
  gap: 60px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.portfolio-card:nth-child(even) {
  direction: rtl;
}

.portfolio-card:nth-child(even) .portfolio-info {
  direction: ltr;
}

.portfolio-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.portfolio-info h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.portfolio-meta {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.portfolio-info p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #f3f4f6;
  color: #374151;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.testimonials {
  padding: 80px 24px;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-text {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.author-info h4 {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info p {
  color: #6b7280;
  font-size: 14px;
}

.contact-section {
  padding: 80px 24px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a1a1a;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.form-note {
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  margin-top: -8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: #f9fafb;
  padding: 32px;
  border-radius: 8px;
}

.info-card h3 {
  margin-bottom: 24px;
  color: #1a1a1a;
  font-size: 20px;
}

.info-item {
  margin-bottom: 24px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h4 {
  color: #1a1a1a;
  margin-bottom: 4px;
  font-size: 15px;
}

.info-item p {
  color: #374151;
  font-size: 15px;
}

.info-detail {
  color: #6b7280;
  font-size: 13px;
}

.service-area-list {
  list-style: none;
  margin: 16px 0;
}

.service-area-list li {
  padding: 6px 0;
  color: #374151;
  position: relative;
  padding-left: 20px;
}

.service-area-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1a1a1a;
}

.info-note {
  color: #6b7280;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

.process-list {
  list-style: none;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.process-list li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.process-list strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.process-list p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.trust-badges {
  background: #f9fafb;
  padding: 60px 24px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.badge-item {
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
}

.badge-item h4 {
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 16px;
}

.badge-item p {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .stats-grid,
  .services-grid,
  .testimonials-grid,
  .badges-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-content,
  .portfolio-card,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .nav {
    gap: 16px;
  }
}