/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f8f8;
  color: #080808;
  font-family: "Avenir", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #080808;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #080808;
  color: #f8f8f8;
  border-color: #080808;
}

.btn-primary:hover {
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

.btn-outline {
  background-color: transparent;
  color: #080808;
  border-color: #080808;
}

.btn-outline:hover {
  background-color: #080808;
  color: #f8f8f8;
}

.btn-nav {
  padding: 10px 20px;
  background-color: #080808;
  color: #f8f8f8;
  border-radius: 3px;
  font-size: 0.95rem;
}

.btn-nav:hover {
  background-color: #3a3a3a;
  opacity: 1;
}

/* Header and Navigation */
.header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  padding: 1.5rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  width: 100%;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-visual {
  width: 100%;
  max-width: 800px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Stats Section */
.stats {
  background-color: #e8e8e8;
  padding: 4rem 2rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
}

.stat-card h3 {
  margin-bottom: 1rem;
}

.stat-card p {
  color: #3a3a3a;
  font-size: 0.95rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: #3a3a3a;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
}

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

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

.service-card {
  background-color: #e8e8e8;
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(8, 8, 8, 0.1);
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #080808;
}

.service-card p {
  color: #3a3a3a;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Cases Section */
.cases {
  background-color: #e8e8e8;
  padding: 4rem 2rem;
}

.cases {
  max-width: 1200px;
  margin: 0 auto;
}

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

.case-card {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #080808;
}

.case-card h3 {
  color: #080808;
  margin-bottom: 0.75rem;
}

.case-card p {
  color: #3a3a3a;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Partners Section */
.partners {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
}

.partners {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 1rem;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Team Section */
.team {
  background-color: #e8e8e8;
  padding: 4rem 2rem;
}

.team {
  max-width: 1200px;
  margin: 0 auto;
}

.team-content {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonial-card {
  background-color: #e8e8e8;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid #10a850;
}

.testimonial-text {
  color: #080808;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  color: #3a3a3a;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background-color: #080808;
  color: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  color: #f8f8f8;
  margin-bottom: 1rem;
}

.cta p {
  color: #e8e8e8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #e8e8e8;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #f8f8f8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-section p {
  color: #a0a0a0;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #e8e8e8;
}

.footer-section a:hover {
  color: #f8f8f8;
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 2rem;
  text-align: center;
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .nav {
    padding: 1rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-height: 48px;
    min-width: 44px;
  }

  .stats-container,
  .services-grid,
  .cases-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  body {
    font-size: 15px;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .stat-card,
  .service-card,
  .case-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  section {
    padding: 2.5rem 1rem !important;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.section-padding {
  padding: 4rem 2rem;
}
