.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background-size: cover;
  background-image: url(/img/back.jpg);
  background-position: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.95) 60%,
    rgba(255,255,255,0.6) 80%,
    rgba(255,255,255,0.95) 60%
  );
  padding: 1.8rem;
  border-radius: 0.5rem;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: 2px solid var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.badge-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.trust {
  padding: 5rem 5%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 1rem;
  color: #555;
}

section {
  padding: 5rem 5%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
}

.services {
  background: var(--gray);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #555;
}

.why-us {
  background: var(--white);
}

.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gray);
  border-radius: 16px;
  transition: all 0.3s;
}

.why-item:hover {
  transform: translateX(5px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: #555;
  font-size: 0.95rem;
}

.timeline {
  background: var(--gray);
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50px;
  width: 2px;
  height: calc(100% - 50px);
  background: var(--orange);
  opacity: 0.3;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #555;
}

.areas {
  background: var(--white);
}

.areas-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.area-item {
  cursor: pointer;
  color: var(--black);
  text-decoration: none !important;
  background: var(--gray);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s;
}

.area-item:hover {
  background: var(--orange);
  color: white;
  transform: scale(1.05);
}

.cta {
  background: linear-gradient(135deg, var(--black) 0%, #222 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 2rem; }
  .hero-logo { max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 509px) {
  .hero { background-image: none; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 5% 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-text { font-size: 1rem; }
  .hero-logo { max-width: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 2rem; }
  .trust-number { font-size: 2.2rem; }
  .cta h2 { font-size: 1.8rem; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }
}
