﻿/* style.css */
/* ------ RESET & VARIABLES ------ */
:root {
    --indigo-50: #fff1f2;
    --indigo-100: #ffe4e6;
    --indigo-200: #fecdd3;
    --indigo-300: #fda4af;
    --indigo-400: #fb7185;
    --indigo-500: #f43f5e;
    --indigo-600: #e11d48;
    --indigo-700: #be123c;

    --blue-500: #fb7185;
    --blue-600: #e11d48;
    --blue-700: #be123c;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --white: #ffffff;
    --red-100: #fee2e2;
    --red-700: #b91c1c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--white);
    color: var(--slate-800);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ------ LAYOUT ------ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ------ TYPOGRAPHY ------ */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-sub {
    font-size: 1rem;
    color: var(--slate-600);
    max-width: 700px;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-sub {
        font-size: 1.125rem;
        padding: 0;
    }
}

/* ------ COMPONENTS ------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    box-shadow: 0 10px 20px -8px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(225, 29, 72, 0.45);
}

.btn-outline {
    background: var(--white);
    color: var(--slate-800);
    border: 2px solid var(--slate-200);
}

.btn-outline:hover {
    border-color: var(--indigo-600);
    background: var(--slate-50);
}

.card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(225, 29, 72, 0.15), 0 0 0 1px var(--indigo-100);
}

.badge {
    background: var(--indigo-50);
    color: var(--indigo-600);
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: inline-block;
}

/* Tool & Domain Badges */
.tool-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, var(--white), var(--slate-50));
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.tool-badge:hover {
    border-color: var(--indigo-300);
    background: linear-gradient(145deg, var(--indigo-50), var(--white));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
    color: var(--indigo-700);
}

.domain-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, var(--white), var(--purple-50));
    color: var(--purple-800);
    border: 1px solid var(--purple-200);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.domain-badge:hover {
    border-color: var(--purple-400);
    background: linear-gradient(145deg, var(--purple-100), var(--white));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.nav-link {
    color: var(--slate-700);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--indigo-600);
}

/* Header */
.header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid var(--slate-100);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-800);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-illustration {
    background: radial-gradient(circle at center, var(--indigo-100) 0%, var(--white) 70%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Expandable cards */
.expand-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-content.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.category-tag {
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 400px;
}

.table th {
    background: var(--indigo-50);
    color: var(--slate-800);
    font-weight: 600;
    padding: 1rem 1.5rem;
    text-align: left;
}

.table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--slate-200);
}

/* Methodology Steps */
.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    margin-top: 1rem;
}

.methodology-steps::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: var(--slate-100);
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: var(--white);
    border: 2px solid var(--indigo-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    border-color: var(--indigo-300);
    background: var(--indigo-50);
    transform: scale(1.1) rotate(5deg);
}

.step-content {
    background: var(--slate-50);
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-100);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.step-item:hover .step-content {
    background: var(--white);
    border-color: var(--indigo-200);
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.1);
    transform: translateX(4px);
}

/* Modern Dark Footer */
.footer-modern {
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
    color: var(--slate-300);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    width: 100%;
}

.footer-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(64px);
    opacity: 0.15;
}

.footer-glow-br {
    top: 0;
    right: 0;
    background-color: var(--indigo-600);
    transform: translate(50%, -50%);
}

.footer-glow-bl {
    bottom: 0;
    left: 0;
    background-color: var(--blue-600);
    transform: translate(-50%, 50%);
}

.footer-content-wrapper {
    position: relative;
    z-index: 10;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-modern-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand-column {
        grid-column: span 2;
    }
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.025em;
    text-decoration: none;
}

.footer-logo-img {
    height: 3.5rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-description {
    color: var(--slate-400);
    line-height: 1.6;
    max-width: 24rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-social-link svg {
    width: 1rem;
    height: 1rem;
}

.footer-social-link:hover {
    background-color: var(--indigo-600);
    color: var(--white);
    border-color: var(--indigo-500);
    transform: translateY(-4px);
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--slate-400);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--indigo-400);
}

.footer-link-arrow {
    color: rgba(225, 29, 72, 0.45);
    font-size: 1.25em;
    line-height: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    background-color: var(--slate-800);
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--indigo-400);
    flex-shrink: 0;
}

.footer-contact-text {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-text small {
    font-size: 0.75rem;
    color: var(--slate-500);
    display: block;
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .footer-badges {
        gap: 1.5rem;
    }
}

.footer-badge {
    font-size: 0.625rem;
    color: var(--slate-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
}

.dot-indigo {
    background-color: var(--indigo-500);
}

.dot-blue {
    background-color: var(--blue-500);
}

.dot-green {
    background-color: #22c55e;
}

/* Enhanced Utilities for Registration Form */
.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.w-64 {
    width: 16rem;
}

.h-64 {
    height: 16rem;
}

.w-48 {
    width: 12rem;
}

.h-48 {
    height: 12rem;
}

.w-2 {
    width: 0.5rem;
}

.h-2 {
    height: 0.5rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.z-10 {
    z-index: 10;
}

.-space-x-3>*+* {
    margin-left: -0.75rem;
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.p-1\.5 {
    padding: 0.375rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-slate-300 {
    border-color: #cbd5e1;
}

.border-indigo-600 {
    border-color: var(--indigo-600);
}

.border-t {
    border-top-width: 1px;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:border-indigo-500:focus {
    border-color: var(--indigo-500);
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.15);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.appearance-none {
    appearance: none;
    -webkit-appearance: none;
}

.bg-white {
    background-color: var(--white);
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-blue-400 {
    background-color: #fb7185;
}

.bg-indigo-300 {
    background-color: #fda4af;
}

.bg-blue-300 {
    background-color: #fda4af;
}

.bg-purple-300 {
    background-color: #d8b4fe;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--indigo-600), var(--blue-700));
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-90 {
    opacity: 0.9;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.translate-x-1\/2 {
    transform: translateX(50%);
}

.translate-y-1\/3 {
    transform: translateY(33.333%);
}

.-translate-x-1\/3 {
    transform: translateX(-33.333%);
}

.blur-2xl {
    filter: blur(40px);
}

.blur-xl {
    filter: blur(24px);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-medium {
    font-weight: 500;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.text-indigo-50 {
    color: var(--indigo-50);
}

.text-indigo-100 {
    color: var(--indigo-100);
}

.text-slate-500 {
    color: #64748b;
}

.text-indigo-800 {
    color: #9f1239;
}

.text-blue-800 {
    color: #9f1239;
}

.text-purple-800 {
    color: #6b21a8;
}

.text-right {
    text-align: right;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.gap-5 {
    gap: 1.25rem;
}

.flex-col {
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 1024px) {
    .lg\:p-12 {
        padding: 3rem;
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
    }
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-divider {
    border-color: var(--slate-700);
    margin: 2rem 0 1rem;
}

/* Enhanced Utilities for About section */
.mb-12 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-indigo-50 {
    background-color: var(--indigo-50);
}

.bg-indigo-600 {
    background-color: var(--indigo-600);
}

.text-indigo-700 {
    color: var(--indigo-700);
}

.text-slate-900 {
    color: var(--slate-900);
}

.text-white {
    color: var(--white);
}

.bg-blue-50 {
    background-color: #fff1f2;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.text-blue-600 {
    color: #e11d48;
}

.text-purple-600 {
    color: #9333ea;
}

.text-green-600 {
    color: #16a34a;
}

.border-indigo-100 {
    border-color: #ffe4e6;
}

.border-blue-100 {
    border-color: #ffe4e6;
}

.border-purple-100 {
    border-color: #f3e8ff;
}

.border-green-100 {
    border-color: #dcfce3;
}

.border-indigo-500\/30 {
    border-color: rgba(225, 29, 72, 0.25);
}

.bg-indigo-500\/20 {
    background-color: rgba(225, 29, 72, 0.15);
}

.text-indigo-300 {
    color: #fda4af;
}

.text-indigo-400 {
    color: #fb7185;
}

.text-slate-300 {
    color: #cbd5e1;
}

.hover\:border-indigo-300:hover {
    border-color: #fda4af;
}

.hover\:border-blue-300:hover {
    border-color: #fda4af;
}

.hover\:border-purple-300:hover {
    border-color: #d8b4fe;
}

.hover\:border-green-300:hover {
    border-color: #86efac;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.-top-4 {
    top: -1rem;
}

.-right-4 {
    right: -1rem;
}

.-bottom-4 {
    bottom: -1rem;
}

.-left-4 {
    left: -1rem;
}

.w-24 {
    width: 6rem;
}

.h-24 {
    height: 6rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.bg-indigo-200 {
    background-color: #fecdd3;
}

.bg-blue-200 {
    background-color: #bfdbfe;
}

.border-slate-700 {
    border-color: #334155;
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .lg-p-10 {
        padding: 2.5rem;
    }

    .lg-gap-6 {
        gap: 1.5rem;
    }

    .lg-gap-12 {
        gap: 3rem;
    }

    .lg-translate-y-8 {
        transform: translateY(2rem);
    }

    .lg-mb-0 {
        margin-bottom: 0;
    }

    .lg-text-left {
        text-align: left;
    }

    .lg-items-start {
        align-items: flex-start;
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.h-full {
    height: 100%;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Button Layout Enhancements */
.flex-row {
    flex-direction: row;
}

.text-base {
    font-size: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.shadow-indigo-500\/30 {
    box-shadow: 0 4px 14px 0 rgba(225, 29, 72, 0.25);
}

.hover\:shadow-indigo-500\/50:hover {
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--blue-600), var(--indigo-600));
}

.border-indigo-400\/50 {
    border-color: rgba(129, 140, 248, 0.5);
}

.shadow-\[0_8px_30px_rgb\(0\,0\,0\,0\.04\)\] {
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.04);
}

.text-slate-700 {
    color: #334155;
}

@media (min-width: 640px) {
    .sm\:text-lg {
        font-size: 1.125rem;
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Category Cards Enhancements */
.items-stretch {
    align-items: stretch;
}

.h-full {
    height: 100%;
}

.mt-auto {
    margin-top: auto;
}

.pt-6 {
    padding-top: 1.5rem;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-indigo-700 {
    color: #be123c;
}

.text-blue-700 {
    color: #be123c;
}

.text-purple-700 {
    color: #7e22ce;
}
