* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

.main {
  min-height: 100vh;
  background: linear-gradient(to bottom, #111, #000);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  padding: 0 1rem;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background: radial-gradient(circle at 30% 50%, #f96, transparent 40%),
              radial-gradient(circle at 80% 70%, #f60, transparent 50%);
}

.hero-content {
  text-align: center;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(255, 102, 51, 0.25);
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-title-accent {
  color: #ff6633;
}

.hero-subtitle-wrapper {
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-subtitle-wrapper {
    height: 3.2em;
    margin-bottom: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e5e5e5;
  font-weight: 300;
  max-width: 90vw;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

.hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ff6633;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  transition: all 0.2s;
  border: none;
  outline: none;
}
.hero-button:hover {
  background: #ff4400;
}
@media (min-width: 768px) {
  .hero-button {
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
  }
}

.hero-button-icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .hero-button-icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.services {
  padding: 5rem 1rem;
  background: #000;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.8);
}
.service-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.service-card-description {
  color: #e5e5e5;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
}

.partner {
  padding: 5rem 0;
  background: #000;
}
.partner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .partner-container {
    flex-direction: row;
  }
}
.partner-info {
  width: 100%;
}
@media (min-width: 768px) {
  .partner-info {
    width: 50%;
  }
}
.partner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .partner-title {
    font-size: 3rem;
  }
}
.partner-description {
  color: #e5e5e5;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 90%;
}
.partner-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.partner-feature {
  display: flex;
  align-items: center;
  color: #e5e5e5;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.partner-feature-icon {
  color: #ff6633;
  margin-right: 0.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}
.partner-button {
  display: inline-block;
  background: #ff6633;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.partner-button:hover {
  background: #ff4400;
}
.partner-image {
  width: 100%;
  display: flex;
  justify-content: center;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3)
}
@media (min-width: 768px) {
  .partner-image {
    width: 50%;
  }
}
.partner-img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  background: #000;
}

.advantages {
  padding: 5rem 1rem;
  background: #000;
}
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.advantage-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.8);
  transition: all 0.2s;
}
.advantage-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(255,102,51,0.2);
}
.advantage-card-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}
.advantage-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.advantage-card-description {
  color: #e5e5e5;
  font-size: 1.1rem;
  font-weight: 300;
}

.reviews {
  padding: 5rem 1rem;
  background: #000;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.review-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.8);
}
.review-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.review-card-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ff6633;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-right: 1rem;
}
.review-card-author {
  display: flex;
  flex-direction: column;
}
.review-card-name {
  font-weight: 700;
  color: white;
}
.review-card-company {
  color: #aaa;
  font-size: 0.9rem;
}
.review-card-text {
  color: #e5e5e5;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: #000;
}
.contact-block-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  padding: 2.5rem 1.5rem;
  border-radius: 2rem;
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
}
.contact-block-image {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 50%;
}
.contact-block-text {
  color: white;
  font-size: 1.5rem;
  text-align: center;
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contact-block-text {
    font-size: 1.8rem;
  }
}
.contact-block-name {
  color: #ff6633;
  font-weight: 800;
}
.contact-block-highlight {
  color: #ff6633;
  font-weight: 700;
}
.contact-block-button {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ff6633;
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.contact-block-button:hover {
  background: #ff4400;
}
.contact-block-button-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}
.footer-logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ff6633;
}
.footer-copyright {
  color: white;
  text-align: center;
  font-size: 1.1rem;
}
.footer-email-link {
  color: #ff6633;
  text-decoration: none;
  font-size: 1.1rem;
}
.footer-email-link:hover {
  text-decoration: underline;
}

.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}