body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

img { max-width: 100%; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(237, 196, 28, 0.65);
    outline-offset: 3px;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 209, 210, 0.1);
}

.step-line::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -50%;
    width: 100%;
    height: 0;
    border-top: 2px dashed #0fd1d2;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .step-line::after { display: none; }
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.bg-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.text-slider-container {
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.text-slider {
    display: flex;
    flex-direction: column;
    animation: slideWords 6s infinite;
}

.text-slider span {
    height: 1.2em;
    line-height: 1.2;
    display: block;
}

@keyframes slideWords {
    0%, 20% { transform: translateY(0); }
    33%, 53% { transform: translateY(-1.2em); }
    66%, 86% { transform: translateY(-2.4em); }
    100% { transform: translateY(-3.6em); }
}

.marquee-container { display: flex; width: max-content; }
.marquee-track { display: flex; justify-content: center; align-items: center; gap: 4rem; padding-right: 4rem; }

input[type="radio"]:checked + div.calc-card {
    border-color: #edc41c;
    background-color: rgba(237, 196, 28, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
