.hero-wrapper {

    width: 100vw;

    position: relative;

    left: 50%;

    right: 50%;

    margin-left: -50vw;

    margin-right: -50vw;

    display: flex;

    justify-content: center;

    margin-bottom: 80px;
}

.hero-card {

    width: min(1200px, 92vw);

    display: flex;

    align-items: center;

    gap: 60px;

    padding: 60px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}

.hero-image img {

    width: 220px;

    max-width: 100%;

    height: auto;

    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.hero-kicker {

  text-transform: uppercase;

  letter-spacing: 2px;

  color: #0078D4;

  font-size: 0.8rem;

  font-weight: 700;
}

.hero-card h1 {

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1.05;

    letter-spacing: -0.03em;

    margin-bottom: 24px;

    color: #1E293B;

    max-width: 700px;
}

.hero-content {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.hero-text {

    font-size: 1.15rem;

    line-height: 1.9;

    color: #475569;

    max-width: 700px;

    margin-bottom: 20px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;

    margin-bottom: 35px;
}

.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 20px;

    min-width: 140px;

    border-radius: 8px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.hero-btn-primary {

    background: #0078D4;

    color: white !important;
}

.hero-btn-primary:hover {

    background: #005A9E;

    color: white !important;
}

.hero-btn-secondary {

    background: #FF6B35;

    color: white !important;
}

.hero-btn-secondary:hover {

    background: #E85D26;

    color: white !important;
}

.hero-btn-outline {

    border: 2px solid #1E293B;

    color: #1E293B !important;
}

.hero-btn-outline:hover {

    background: #1E293B;

    color: white !important;
}

.expertise-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.expertise-tags span {

    background: #EFF6FF;

    color: #0078D4;

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 0.9rem;

    font-weight: 600;
}

@media (max-width: 768px) {

  .hero-card {

    flex-direction: column;

    text-align: center;
  }

  .hero-image img {

    width: 200px;
    height: 200px;
  }

  .hero-buttons {

    justify-content: center;
  }
}