/* Cloud Hero Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 4rem 6rem 4rem;
    position: relative;
    overflow: hidden;
    max-width: none;
    margin-top: -60px;
    padding-top: calc(8rem + 60px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -37.5%;
    left: -37.5%;
    width: 175%;
    height: 175%;
    background: url('../../assets/reflection-large.png') center center / contain no-repeat;
    filter: saturate(100%);
    transform: rotate(270deg);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
    z-index: 0;
}

.hero-content {
    max-width: none;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-left: 4rem;
    margin-right: auto;
    background: rgba(255, 248, 240, 0.25);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 5rem;
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-logo {
    height: 1.1em;
    width: 1.1em;
    flex-shrink: 0;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

.hero-content h1 {
    font-family: 'Libre Baskerville', serif;
    font-style: normal;
    color: #ffffff;
    font-size: clamp(4rem, 10vw, 8rem);
    margin-left: 0;
    margin-right: 0;
    margin-top: -2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-title-cloud {
    display: block;
    text-align: left;
    width: 100%;
    font-size: clamp(6rem, 14vw, 12rem);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-title-structure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-logo-large {
    flex-shrink: 0;
}

.hero-logo-large svg {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.3));
}

.hero-content .subheadline {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-content .trust-signal {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2.5rem;
    font-size: 0.875rem;
}

.hero-content .btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.hero-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}
