.fixed-logo-mini {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 250, 0.7);
    backdrop-filter: blur(12px);
    padding: 10px 21px;
    border-radius: 60px;
    border: 0.5px solid rgba(44, 82, 130, 0.3);
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #1e2a3a;
    font-family: 'Inter', sans-serif;
}

.fixed-logo-mini img {
    height: 22px;
    width: auto;
}

.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-card {
    position: relative;
    z-index: 3;
    backdrop-filter: blur(14px);
    padding: 3rem 4rem;
    border-radius: 56px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(44, 82, 130, 0.25);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    width: min(65%, 800px);
    max-width: 1000px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.hero-logo-img {
    flex-shrink: 0;
}

.hero-logo-img img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero-logo-stacked {
    flex-shrink: 0;
    text-align: left;
}

.logo-line {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-apollon {
    font-size: clamp(3rem, 9vw, 4.8rem);
    font-weight: 700;
}

.logo-construction {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    font-weight: 500;
    margin-top: -0.1em;
    letter-spacing: 0.02em;
}

.logo-group {
    font-size: clamp(1.5rem, 4.5vw, 2.3rem);
    font-weight: 400;
    margin-top: -0.05em;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.slogan {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    background: rgba(44,82,130,0.08);
    display: inline-block;
    padding: 0.3rem 1.8rem;
    border-radius: 60px;
    margin: 0.8rem auto 0.2rem;
    color: #2c5282;
    text-transform: uppercase;
}

.accent-line {
    width: 80px;
    height: 2px;
    background: #2c5282;
    margin: 1rem auto;
}

.hero-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2c3e50;
    margin: 0.2rem 0 0.75rem;
    opacity: 0.8;
}

.btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #2c5282;
    color: white;
    box-shadow: 0 4px 10px rgba(44,82,130,0.3);
    border: none;
}

.btn-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #2c5282;
    color: #2c5282;
    background: rgba(255,255,250,0.7);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: #2c5282;
    color: white;
    transform: translateY(-2px);
}