/* ============================================
   JOYJOBBY DESIGN SYSTEM — REFINED EMERALD v2
   ============================================
   Brand Identity: Premium confidence.
   Emerald as accent (10%), not atmosphere.
   75% white/neutral · 15% charcoal · 10% emerald.
   
   Palette:
   - Primary Emerald: #145E4A (accent only)
   - Hover Emerald: #19735A
   - Deep Emerald: #0E3F33 (footer/hero only)
   - Soft Tint: #E9F4F1
   - Off-white: #F7F9F8
   - Charcoal: #111314
   - Text Secondary: #3D4240
   - Muted Grey: #5F6664
   
   Typography: Inter — modern, clean, sharp
   Layout: Clean white space, strong anchors
   ============================================ */

/* ===== FONT IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES — DESIGN TOKENS ===== */
:root {
    /* === Refined Emerald System === */
    --primary: #145E4A;
    --primary-light: #19735A;
    --primary-dark: #0E3F33;
    --primary-hover: #0E3F33;
    --accent: #19735A;
    --accent-light: #1A7F62;
    --accent-subtle: rgba(20, 94, 74, 0.06);
    --accent-ring: rgba(20, 94, 74, 0.12);
    --emerald-tint: #E9F4F1;
    
    /* === Surface Colors === */
    --white: #FFFFFF;
    --surface: #F7F9F8;
    --surface-warm: #F7F9F8;
    --surface-elevated: #FFFFFF;
    --surface-charcoal: #1A1D1C;
    --surface-charcoal-light: #2A2D2C;
    
    /* === Text Colors === */
    --text: #111314;
    --text-secondary: #3D4240;
    --text-muted: #5F6664;
    --text-inverse: #FFFFFF;
    --text-on-primary: #FFFFFF;
    --text-light: #5F6664;
    
    /* === Border Colors === */
    --border: #E2E6EC;
    --border-light: #EEF1F5;
    --border-focus: var(--primary);
    --border-primary: var(--primary);
    
    /* === Semantic Colors === */
    --success: #145E4A;
    --warning: #D97706;
    --error: #DC2626;
    --info: #2563EB;
    
    /* === Activity Type Colors === */
    --scheduled-green: #30E09C;
    --scheduled-color: #30E09C;
    --timeslot-color: #5B6E8A;
    --timeslot-slate: #5B6E8A;
    
    /* === Shadows — Refined, not heavy === */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 4px 16px rgba(20, 94, 74, 0.18);
    --shadow-primary-lg: 0 8px 32px rgba(20, 94, 74, 0.12);
    
    /* === Border Radius — Sharp, not bubbly === */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 100px;
    
    /* === Transitions — Smooth, not bouncy === */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* === Typography === */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;
    
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: -0.01em;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-caps: 0.08em;
    
    /* === Spacing === */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* === Layout === */
    --max-width: 1200px;
    --max-width-sm: 800px;
    --max-width-lg: 1400px;
    --max-width-content: 680px;
    
    /* === Z-index Scale === */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    
    /* === Legacy variable aliases === */
    --light: var(--surface);
    --primary-foreground: var(--text-on-primary);
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --diamond-light: var(--surface);
    --diamond-mid: var(--surface-warm);
    --diamond-dark: var(--border-light);
    --gradient-diamond: linear-gradient(180deg, var(--surface) 0%, var(--surface-warm) 100%);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text);
    background-color: var(--surface);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: var(--letter-spacing-normal);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: var(--letter-spacing-tight);
}

h1 { font-size: clamp(2.25rem, 5vw, var(--font-size-5xl)); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, var(--font-size-4xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--font-size-2xl)); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); font-weight: 600; }
h6 { font-size: var(--font-size-base); font-weight: 600; }

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== BUTTONS — Controlled, Premium ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: var(--primary) !important;
    color: var(--text-on-primary) !important;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-normal);
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--text-on-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-ghost:hover {
    background: var(--surface-warm);
    color: var(--text);
}

.btn-lg { padding: 16px 36px; font-size: var(--font-size-lg); }
.btn-sm { padding: 8px 16px; font-size: var(--font-size-sm); }
.btn-icon { padding: var(--space-3); border-radius: var(--radius-md); }

/* Inverse / CTA Buttons */
.btn-inverse, .hero-btn.primary, .cta-btn {
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    border: 2px solid var(--white) !important;
    font-weight: 600;
}

.btn-inverse:hover, .hero-btn.primary:hover, .cta-btn:hover {
    background: var(--surface) !important;
    border-color: var(--surface) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white, .hero-btn.secondary {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-white:hover, .hero-btn.secondary:hover {
    border-color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
}

/* ===== FORM ELEMENTS ===== */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--gray-300);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-ring);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--text);
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: var(--space-6);
    transition: var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-caps);
}

.badge-primary { background: var(--primary); color: var(--white); }
.badge-secondary { background: var(--surface-warm); color: var(--text-secondary); border: 1px solid var(--border); }
.badge-success { background: var(--accent-subtle); color: var(--primary); border: 1px solid rgba(20, 94, 74, 0.15); }
.badge-pink { background: #F1F5F9; color: #475569; border: 1px solid #CBD5E1; }

/* ===== DIAMOND GRADIENT UTILITIES (legacy) ===== */
.bg-diamond { background: var(--gradient-diamond); }
.bg-diamond-light { background: var(--surface); }
.bg-diamond-mid { background: var(--surface-warm); }
.bg-diamond-dark { background: var(--border-light); }
.bg-gradient-white-diamond { background: linear-gradient(135deg, var(--white) 0%, var(--surface) 100%); }
.bg-gradient-diamond-reverse { background: linear-gradient(135deg, var(--border-light) 0%, var(--surface) 100%); }
.bg-gradient-diamond-vertical { background: linear-gradient(180deg, var(--white) 0%, var(--surface) 50%, var(--white) 100%); }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.bg-gradient-primary-accent { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); }

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--space-24) var(--space-5);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
    letter-spacing: var(--letter-spacing-tight);
}

.section-header p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-5); }
.container-sm { max-width: var(--max-width-sm); }
.container-lg { max-width: var(--max-width-lg); }

/* ===== GRID LAYOUTS ===== */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ===== FLEX UTILITIES ===== */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes simpleFadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes simpleFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes gently-fade { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; } }
@keyframes iconBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes floatBubble { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10px, -10px); } }
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(5px, -8px); } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-in { animation: fadeIn 0.3s ease-out; }
.animate-slide-up { animation: slideUp 0.4s ease-out; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.bg-white { background: var(--white); }
.bg-light { background: var(--surface); }
.bg-primary { background: var(--primary); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

/* ===== TRUST INDICATORS ===== */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary);
    font-size: var(--font-size-xs);
}

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--surface-warm) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: var(--letter-spacing-tight);
    color: var(--white) !important;
    text-shadow: none;
    animation: simpleFadeInUp 0.6s ease-out forwards !important;
    opacity: 1;
    transform: translateY(0);
}

.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.cta-section p {
    font-size: var(--font-size-lg);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85) !important;
    animation: simpleFadeInUp 0.6s ease-out 0.2s forwards !important;
    opacity: 1;
    transform: translateY(0);
}

.cta-section .cta-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
    color: rgba(255, 255, 255, 0.6) !important;
    animation: simpleFadeIn 0.6s ease-out forwards !important;
    opacity: 1;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.cta-section .cta-content h2,
.cta-section .cta-content p,
.cta-section .cta-content .cta-icon {
    color: inherit;
}

.cta-section h2,
.cta-section p,
.cta-section .cta-btn,
.cta-section .cta-icon {
    color: var(--white) !important;
}

.cta-find {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.cta-list {
    background: linear-gradient(135deg, var(--surface-charcoal) 0%, var(--surface-charcoal-light) 100%);
    color: var(--white);
}

.cta-find::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 94, 74, 0.10) 0%, transparent 70%);
    pointer-events: none;
    opacity: 1;
}

.cta-list::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 94, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
    opacity: 1;
}

.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--white) !important;
    color: var(--primary-dark) !important;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: simpleFadeInUp 0.6s ease-out 0.4s forwards !important;
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0;
}

.cta-section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-section .cta-btn i {
    transition: transform 0.2s ease;
}

.cta-section .cta-btn:hover i {
    transform: translateX(3px);
}

.cta-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.cta-find .cta-decoration-1 {
    top: 15%; left: 8%; width: 80px; height: 80px;
    border: 2px solid var(--white); border-radius: 50%;
}

.cta-find .cta-decoration-2 {
    bottom: 20%; right: 12%; width: 40px; height: 40px;
    background: var(--white); border-radius: var(--radius-sm); transform: rotate(45deg);
}

.cta-list .cta-decoration-1 {
    top: 12%; right: 10%; width: 60px; height: 60px;
    border: 2px solid var(--white); border-radius: var(--radius-md);
}

.cta-list .cta-decoration-2 {
    bottom: 18%; left: 8%; width: 50px; height: 50px;
    background: var(--white); border-radius: 50%;
}

.cta-section.visible h2,
.cta-section.visible p,
.cta-section.visible .cta-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .section { padding: var(--space-16) var(--space-4); }
    .section-header { margin-bottom: var(--space-10); }
}

@media (min-width: 769px) {
    .hide-desktop { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
}

/* ===== LEGACY SUPPORT ===== */
.btn-base {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-family);
}
