body {
    background-color: #040e21; /* inverse-surface */
    color: #e5f5ff; /* on-primary */
}
.glacier-glass {
    background-color: rgba(4, 14, 33, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 209, 250, 0.2);
}
.glacier-btn {
    background: linear-gradient(135deg, #7bd1fa, #006382);
    color: #040e21;
    box-shadow: 0 4px 15px rgba(123, 209, 250, 0.3), inset 1px 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    font-weight: 600;
}
.glacier-btn:active {
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
}
.text-gradient-ice {
    background: linear-gradient(to right, #7bd1fa, #c4d4fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.soft-etched-line {
    border-bottom: 1px solid rgba(123, 209, 250, 0.1);
}
.shadow-glacier-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(123, 209, 250, 0.1);
}
.shadow-ice-glow {
    box-shadow: 0 0 30px rgba(123, 209, 250, 0.3), inset 0 0 15px rgba(123, 209, 250, 0.1);
}
.shadow-soft-ice {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(123, 209, 250, 0.1);
}

/* Animations for How We Work Section */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-anim {
    animation: float 4s ease-in-out infinite;
}
.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-wrapper.is-visible .process-step {
    opacity: 1;
    transform: translateY(0);
}
.connection-line-bg {
    overflow: hidden;
}
.connection-line {
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.process-wrapper.is-visible .connection-line {
    width: 100%;
}
.step-icon-wrapper {
    transition: all 0.3s ease;
}
.process-step:hover .step-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(123, 209, 250, 0.4), inset 0 0 10px rgba(123, 209, 250, 0.2);
    border-color: rgba(123, 209, 250, 0.6);
}
