/* Shadcn-inspired improvements */

/* Better typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
}

/* Improved headings - shadcn style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Better cards with shadcn shadows */
.border.rounded-lg,
.rounded-lg.border,
[class*="card"] {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    border-color: hsl(0 0% 89.8%) !important;
}

.border.rounded-lg:hover,
.rounded-lg.border:hover,
[class*="card"]:hover {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08), 0 2px 6px -2px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px);
    border-color: hsl(0 0% 70%) !important;
}

/* Better buttons */
button {
    font-weight: 500;
    letter-spacing: -0.011em;
    transition: all 0.2s ease;
}

/* Improved spacing and layout */
.container,
.max-w-7xl,
.max-w-6xl {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Better text colors - shadcn palette */
.text-zinc-900 {
    color: hsl(0 0% 9%) !important;
}

.text-zinc-600,
.text-zinc-500 {
    color: hsl(0 0% 45.1%) !important;
}

/* Process cards improvements */
.grid > div {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid > div:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Icon containers */
.w-12.h-12,
.w-16.h-16 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Better focus states */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid hsl(0 0% 9%);
    outline-offset: 2px;
    border-radius: 0.375rem;
}

/* Smooth animations */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better header */
header {
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(0 0% 89.8%);
}

/* Improved section spacing */
section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Better rounded corners - shadcn style */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

/* Title improvements */
h1.text-4xl,
h1.text-3xl {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2.text-3xl,
h2.text-2xl {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

/* Better card content */
.p-6,
.p-8 {
    padding: 1.5rem;
}

/* Icon styling */
svg {
    transition: transform 0.3s ease;
}

.grid > div:hover svg {
    transform: scale(1.1);
}

/* Badge/tag improvements */
.bg-zinc-100,
.bg-zinc-200 {
    background-color: hsl(0 0% 96.1%);
    color: hsl(0 0% 9%);
    border-radius: 0.375rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Link improvements */
a {
    transition: color 0.2s ease;
}

a:hover {
    color: hsl(0 0% 9%);
}

/* Better shadows for elevated elements */
.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08), 0 2px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/* Better background */
body {
    background-color: hsl(0 0% 98%);
}

/* Improved border colors */
.border,
.border-zinc-200 {
    border-color: hsl(0 0% 89.8%) !important;
}

/* Number badges in process cards */
.text-lg.font-bold,
.text-xl.font-bold {
    background: linear-gradient(135deg, hsl(0 0% 9%) 0%, hsl(0 0% 20%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Better hover states for interactive elements */
.cursor-pointer:hover {
    opacity: 0.9;
}

/* Improve main title */
.text-center h1 {
    background: linear-gradient(135deg, hsl(0 0% 9%) 0%, hsl(0 0% 30%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card number circles */
.rounded-full.bg-black,
.rounded-full.bg-zinc-900 {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Better responsive */
@media (max-width: 768px) {
    .container,
    .max-w-7xl,
    .max-w-6xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1.text-4xl,
    h1.text-3xl {
        font-size: 2rem;
    }
    
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
