:root {
    --shadow-medium: 0 10px 30px rgba(22, 160, 133, 0.15);
    --shadow-heavy: 0 20px 40px rgba(22, 160, 133, 0.2);
}

body {
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.03) 0%, rgba(44, 62, 80, 0.03) 100%);
    padding: 120px 0 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(22, 160, 133, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.btn-floating {
    padding: 15px 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-light);
}

.btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--primary);
}

.btn-outline-floating {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 13px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-floating:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.features-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.floating-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(22, 160, 133, 0.1);
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

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

.feature-icon-floating {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
}

.cta-floating-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(22, 160, 133, 0.1);
}

.form-control-floating {
    border: 2px solid rgba(22, 160, 133, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(22, 160, 133, 0.02);
}

.form-control-floating:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(22, 160, 133, 0.1);
    background: white;
}

.form-label-floating {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-floating-element {
    position: absolute;
    font-size: 15rem;
    color: rgba(22, 160, 133, 0.05);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}