/* Different levels of button rounding */
.btn-slightly-rounded {
    border-radius: 0.375rem;  /* 6px - subtle */
}

.btn-rounded {
    border-radius: 0.75rem;   /* 12px - noticeable */
}

.btn-very-rounded {
    border-radius: 1.25rem;   /* 20px - prominent */
}

.btn-pill {
    border-radius: 9999px;    /* Fully rounded pill */
}

/* Apply to all buttons if you want */
.uk-btn {
    border-radius: 0.75rem;
}

/* Sophisticated landing page styling */
.uk-btn {
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.uk-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Icon containers */
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    transition: all 0.2s ease-in-out;
}

.icon-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.icon-secondary {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #475569;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.icon-accent {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.icon-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Professional card styling */
.uk-card {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.uk-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Hero section styling */
#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Section spacing */
section {
    scroll-margin-top: 4rem;
}