.hero {
    position: relative;
    padding: clamp(80px, 10vw, 120px) 0 clamp(100px, 12vw, 150px);
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero-bg-text {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-headings);
    font-size: clamp(100px, 15vw, 200px);
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    letter-spacing: 10px;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 55px);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero .subtitle {
    font-family: var(--font-headings);
    font-size: clamp(16px, 3vw, 20px);
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero .subtitle::after {
    content: '';
    height: 1px;
    background-color: var(--accent-color);
    flex-grow: 1;
    opacity: 0.5;
}

.hero p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-bg-text { right: -20%; }
    .hero-buttons { flex-direction: column; }
}