.floating-alert {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.hero {
    padding: 140px 0 80px;
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.11) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    letter-spacing: -2px;
    text-wrap: balance;
}

.hero p.lead {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-content,
.cta-actions {
    position: relative;
    z-index: 1;
}

.hero-lead {
    max-width: 700px;
}

.btn-hero-primary {
    padding: 1.1rem 3rem;
    background: white;
    color: var(--brand-start);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--surface-muted);
    color: var(--brand-start);
}

.btn-hero-secondary {
    padding: 1.1rem 3rem;
    background: rgba(255, 255, 255, 0.13);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    color: white;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    text-align: center;
}

.stat-box h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.services {
    padding: 100px 0;
    background: var(--bg-base);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--heading-color);
}

.section-subtitle {
    max-width: 700px;
    font-size: 1.2rem;
}

.service-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--brand-start);
}

.service-icon {
    font-size: 2.1rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-start-rgb), 0.12);
    color: var(--brand-start);
}

.service-link {
    color: var(--brand-start);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
    color: var(--brand-end);
}

.brands {
    padding: 60px 0;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

.brands-subtitle {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b6ab9e;
    transition: color 0.3s;
    text-align: center;
    padding: 1rem;
}

.brand-logo:hover {
    color: var(--brand-start);
}

.reveal-up {
    opacity: 0;
    transform: translateY(16px);
    animation: revealUp 0.6s ease-out forwards;
}

.reveal-up.delay-1 {
    animation-delay: 0.08s;
}

.reveal-up.delay-2 {
    animation-delay: 0.16s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta {
    padding: 100px 0;
    background: var(--surface-color);
}

.cta-container {
    background: var(--brand-gradient);
    padding: clamp(3rem, 5vw, 5rem);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-container p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}
