@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --background: 40 33% 97%;
    --foreground: 220 30% 12%;

    --card: 40 20% 95%;
    --card-foreground: 220 30% 12%;

    --popover: 40 33% 97%;
    --popover-foreground: 220 30% 12%;

    --primary: 220 45% 16%;
    --primary-foreground: 40 33% 97%;

    --secondary: 40 20% 92%;
    --secondary-foreground: 220 30% 12%;

    --muted: 40 15% 90%;
    --muted-foreground: 220 10% 45%;

    --accent: 4 72% 50%;
    --accent-foreground: 0 0% 100%;

    --border: 220 15% 85%;
    --input: 220 15% 85%;
    --ring: 220 45% 16%;

    --radius: 0.5rem;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

/* Layout utilities */
.container-narrow {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 7rem 3rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 7rem 5rem;
    }
}

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex & Grid */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Spacing */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }

.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-0\\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-16 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }

.z-50 { z-index: 50; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

/* Hero typography */
.hero-title { font-size: 2.75rem; line-height: 1.1; }
@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; line-height: 1.05; }
}
@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; line-height: 1.02; }
}

.font-display { font-family: var(--font-display); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.tracking-tight { letter-spacing: -0.01em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }

/* Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-accent\/10 { background-color: hsl(var(--accent) / 0.1); }

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.border-border { border-color: hsl(var(--border)); }
.border-primary-foreground\/10 { border-color: hsl(var(--primary-foreground) / 0.1); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded { border-radius: 0.25rem; }

/* Effects */
.shadow-lg { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); }

.opacity-10 { opacity: 0.1; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-90 { opacity: 0.9; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Background gradients */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to));
}
.from-background\/60 { --tw-gradient-from: hsl(var(--background) / 0.6); }
.via-background\/40 { --tw-gradient-via: hsl(var(--background) / 0.4); }
.to-background { --tw-gradient-to: hsl(var(--background)); }

/* Misc */
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.resize-none { resize: none; }
.underline { text-decoration: underline; }
.overflow-hidden { overflow: hidden; }
.transition { transition: all 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Icons */
.icon-24 { width: 24px; height: 24px; }
.icon-20 { width: 20px; height: 20px; }
.icon-18 { width: 18px; height: 18px; }

/* Reveal animations (enabled via JS to avoid blank states) */
[data-reveal] {
    opacity: 1;
    transform: none;
}

.reveal-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled [data-reveal="left"] {
    transform: translateX(-32px);
}

.reveal-enabled [data-reveal="right"] {
    transform: translateX(32px);
}

.reveal-enabled [data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-enabled [data-reveal="left"].in-view,
.reveal-enabled [data-reveal="right"].in-view {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Interactive states */
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary\/90:hover { color: hsl(var(--primary) / 0.9); }
.hover\:border-accent\/30:hover { border-color: hsl(var(--accent) / 0.3); }
.hover\:shadow-lg:hover { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04); }

.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px hsl(var(--accent) / 0.3); }
.focus\:ring-accent\/30:focus { box-shadow: 0 0 0 2px hsl(var(--accent) / 0.3); }

.group:hover .group-hover\:bg-accent\/10 { background-color: hsl(var(--accent) / 0.1); }

/* Custom helpers */
.service-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsl(var(--primary) / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon {
    color: hsl(var(--accent));
    font-size: 1rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--accent));
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chevron {
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid hsl(var(--muted-foreground));
    border-bottom: 2px solid hsl(var(--muted-foreground));
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item .faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item.is-open .faq-content {
    max-height: 400px;
    opacity: 1;
}

.faq-item.is-open .chevron {
    transform: rotate(225deg);
}

.faq-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-trigger:hover {
    background-color: hsl(var(--accent) / 0.08);
}

.faq-item.is-open .faq-trigger {
    background-color: hsl(var(--accent) / 0.12);
}

.faq-trigger:focus-visible {
    outline: 2px solid hsl(var(--accent) / 0.35);
    outline-offset: 2px;
    border-radius: 0.5rem;
}

.faq-cta {
    margin-top: 2.5rem;
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--secondary) / 0.65));
    display: grid;
    gap: 1.5rem;
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .faq-cta {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
        align-items: center;
    }

    .faq-cta-actions {
        justify-content: flex-end;
    }
}

/* Differentiators */
.differentiators-list {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .differentiators-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 1.5rem;
    }
}

.differentiator-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.75rem 0.9rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.65rem;
    background: hsl(var(--card));
}

.differentiator-icon {
    width: 28px;
    height: 28px;
    border-radius: 0.5rem;
    background: hsl(var(--accent) / 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Category cards */
.category-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.category-card {
    position: relative;
    background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--secondary) / 0.5));
    border: 1px solid hsl(var(--border));
    border-radius: 0.9rem;
    padding: 1.5rem;
    overflow: hidden;
}


.category-header {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    align-items: start;
    margin-bottom: 1rem;
}

.category-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    background: hsl(var(--accent) / 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.category-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: hsl(var(--accent) / 0.12);
    color: hsl(var(--accent));
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

.category-link::after {
    content: "→";
}

/* Category detail pages */
.category-hero {
    background: hsl(var(--secondary) / 0.5);
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 2rem;
}

.category-hero p {
    margin-top: 0.75rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--background));
    color: hsl(var(--muted-foreground));
}

.category-split {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .category-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

.category-panel {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.85rem;
    padding: 1.5rem;
}

.category-section {
    display: grid;
    gap: 0.75rem;
}

.category-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.6rem;
    align-items: start;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

.category-cta::after {
    content: "→";
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn img {
    width: 22px;
    height: 22px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

/* Contact form (legacy style) */
.contact-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.9rem;
    padding: 2rem;
}

.contact-page {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-page {
        grid-template-columns: 1.1fr 1fr;
        align-items: start;
    }
}

.contact-copy {
    max-width: 32rem;
}

/* About locations */
.about-locations {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-locations {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.location-card {
    border: 1px solid hsl(var(--border));
    border-radius: 0.85rem;
    padding: 1.25rem;
    background: hsl(var(--card));
    display: grid;
    gap: 0.5rem;
}

.location-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 0.65rem;
    background: hsl(var(--accent) / 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-card__title {
    font-weight: 700;
    color: hsl(var(--primary));
}

.location-card__flag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: hsl(var(--muted-foreground));
}

.contact-success {
    text-align: center;
    display: grid;
    gap: 0.75rem;
}

.contact-success__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 999px;
    background: hsl(var(--accent) / 0.12);
    color: hsl(var(--accent));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.contact-success__title {
    font-weight: 700;
    color: hsl(var(--primary));
}

.form-grid {
    display: grid;
    gap: 1rem 1.25rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .form-field--full {
        grid-column: span 2;
    }
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.form-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-size: 0.875rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: hsl(var(--accent));
    font-size: 0.8rem;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.6rem;
    padding: 0.75rem 1.2rem;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
}

.btn--hero {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

.btn--hero-outline {
    background: transparent;
    border-color: hsl(var(--border));
    color: hsl(var(--primary));
}

.btn--lg {
    padding: 0.9rem 1.2rem;
}

.category-solutions {
    display: grid;
    gap: 1rem;
}

.category-solution-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .category-solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .category-solution-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.category-solution-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
}

/* Responsive display utilities */
@media (min-width: 768px) {
    .md\:block { display: block; }
}
