body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; overflow-x: hidden; }

.hero-somerset {
    background: linear-gradient(135deg, rgba(22,163,74,0.08), rgba(37,99,235,0.08));
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
    z-index: 0;
}

.blob-1 { top: -18%; left: -6%; width: 520px; height: 520px; background: #22c55e; animation-delay: 0s; }
.blob-2 { bottom: -16%; right: -8%; width: 420px; height: 420px; background: #38bdf8; animation-delay: -5s; }

/* Card Hover Effects */
.tier-card {
    border: 2px solid rgba(226,232,240,1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(16,185,129,0.2);
    border-color: rgba(34,197,94,0.5);
}
.tier-featured {
    border-color: rgba(34,197,94,0.4);
    box-shadow: 0 20px 40px -10px rgba(34,197,94,0.2);
    transform: scale(1.02);
    z-index: 10;
}
.tier-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 4s ease-in-out infinite;
}

/* How It Works Steps */
.step-card {
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #16a34a;
}
.connector-line {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
    display: none;
}
@media(min-width: 768px) {
    .connector-line { display: block; }
}

.benefit-somerset {
    background: linear-gradient(135deg, rgba(220,252,231,0.95), rgba(219,234,254,0.7));
    border-color: rgba(34,197,94,0.45);
    box-shadow: 0 22px 40px -28px rgba(34,197,94,0.6);
}
