/* ADDITIONAL UI/UX ENHANCEMENTS */

/* Typography improvements */
.text-secondary {
    color: #666 !important;
    font-weight: 400;
    line-height: 1.7;
}

h2 {
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--dark-color);
}

h3 {
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Attributes section enhancement */
.attributes {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(45, 107, 237, 0.12);
}

.attr {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f8fafb;
    border: 1px solid #e0e8f0;
}

.attr:hover {
    background-color: #f0f5ff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 107, 237, 0.08);
}

.attr i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.attr small {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.band-copy {
    animation: fadeInLeft 0.6s ease 0.2s backwards;
}

.band-visual {
    animation: fadeInRight 0.6s ease 0.2s backwards;
}

/* Feature card h5 styling */
.feature-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Highlight card enhancements */
.highlight-card i{
    transition: all 0.3s ease;
    font-size: 24px;
}

.highlight-card:hover i {
    transform: scale(1.15);
}

.highlight-card h3{
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Band backgrounds with solid colors */
.band-trust {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
}

.band-highlights {
    background: #f6f9ff;
    border-bottom: 1px solid #e0e8f0;
}

.band-usecases {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
}

.band-compare {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
}

.band-final-cta {
    background: #ffffff;
}

/* Link enhancements */
a {
    transition: color 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(45, 107, 237, 0.25);
    outline-offset: 2px;
}

/* Enhanced radio button and checkbox styling */
.feature-card .checkbox {
    cursor: pointer;
}

/* Tooltip improvements */
.sound-tooltip .tip-body .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* How card title hover effect */
.how-card h3 {
    transition: color 0.3s ease;
}

.how-card:hover h3 {
    color: var(--primary-color);
}

/* Better list styling */
.band-bullets {
    margin: 0;
    padding-left: 18px;
    color: #2b2b2b;
}

.band-bullets li {
    margin: 10px 0;
    font-weight: 500;
}

.band-bullets li:before {
    content: "✓ ";
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
}

/* Better feature card padding and styling */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 17px;
    width: 100%;
    max-width: 1200px;
    margin: 33px 0;
}

/* Color transitions */
.feature-cards .feature-card {
    color: var(--dark-color);
}

/* Brand consistency */
:root {
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input focus states */
input[type="checkbox"]:focus-visible {
    outline: 3px solid rgba(45, 107, 237, 0.25);
}

/* Section title enhancement */
section h2 {
    animation: fadeInUp 0.6s ease;
}

/* Improved spacing for better visual hierarchy */
.hero .features {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}
